'AttributeError: ''module'' object has no attribute ''bool_''

今天在python中import caffe時遇到了錯誤:
File "/home/meng/.local/lib/python2.7/site-packages/skimage/util/dtype.py", line 8, in
dtype_range = {np.bool_: (False, True),
AttributeError: 'module' object has no attribute 'bool_'
python

AttributeError: 'module' object has no attribute 'xxx'"。這實際上是.pyc文件存在問題。python2.7

問題定位:
查看/home/meng/.local/lib/python2.7/site-packages/skimage/util,存在源文件的.pyc文件it

問題解決方法:import

1.命名py腳本時,不要與python預留字,模塊名等相同module

2.刪除該庫的.pyc文件(由於py腳本每次運行時均會生成.pyc文件;在已經生成.pyc文件的狀況下,若代碼不更新,運行時依舊會走pyc,因此要刪除.pyc文件),從新運行代碼;或者找一個能夠運行代碼的環境,拷貝替換當前機器的.pyc文件便可object

相關文章
相關標籤/搜索