运行python版faster rcnn时,出现错误AttributeError: 'module' object has no attribute 'compress'

 

最近想重新学习faster rcnn的源代码,找来faster rcnn,运行时候出现错误:

  File ".../lib/python2.7/site-packages/dask/bytes/compression.py", line 31, in
    compress['snappy'] = snappy.compress
AttributeError: 'module' object has no attribute 'compress'

看/lib/python2.7/site-packages/dask/bytes/compression.py可以发现,这个错误表面

snappy没有compress的方法,奇怪,我明明安装了snappy,自己检查下确实没有这个

函数。

 

最后在https://stackoverflow.com/questions/46101814/python-3-mac-snappy-compress-attributeerror-module-snappy-has-no-attribute找到解决方法,安装snappy的姿势不对啊。

pip install python-snappy

 这样就可以了。

 

你可能感兴趣的:(运行python版faster rcnn时,出现错误AttributeError: 'module' object has no attribute 'compress')