我正在尝试运行PyCharm分析器但是我收到以下错误消息:
Traceback (most recent call last):
File "/home/b3053674/ProgramFiles/pycharm-2017.1.4/helpers/profiler/run_profiler.py", line 164, in <module>
profiler.run(file)
File "/home/b3053674/ProgramFiles/pycharm-2017.1.4/helpers/profiler/run_profiler.py", line 89, in run
execfile(file, globals, globals) # execute the script
File "/home/b3053674/Documents/pycotools/pycotools/tasks.py", line 38, in <module>
import viz,errors, misc, _base, model
File "/home/b3053674/Documents/pycotools/pycotools/viz.py", line 53, in <module>
import matplotlib.pyplot as plt
File "/home/b3053674/anaconda2/envs/pycotools/lib/python2.7/site-packages/matplotlib/__init__.py", line 124, in <module>
from . import cbook
ImportError: cannot import name cbook
Snapshot saved to /home/b3053674/.PyCharm2017.1/system/snapshots/pycotools30.pstat
Process finished with exit code 1
我正在使用我已在终端切换到的conda环境:
$ source activate <env>
然后更新了matplotlib
$pip install matplotlib --upgrade
和六个只是为了好的措施
$pip install six --upgrade
(请注意,我还从我的环境的site-directory手动删除了这些软件包并重新安装,只是因为--upgrade
没有表现出来)
我看了here和here,但这两个解决方案都没有解决我的问题。
我还改变了PyCharm Run
配置,以便依次使用我的每个conda环境,所有这些环境都会产生相同的错误。
请注意,以前的探查器已经运行了,当我使用正常的执行代码的方式时,代码工作正常。有没有人知道发生了什么?
由于
答案 0 :(得分:14)
我今天遇到了同样的错误,虽然可能是出于不同的原因 - matplotlib和/或6的包似乎被打破了。
通过降级到以前的版本来解决它:
conda install six=1.10.0
conda install matplotlib=2.0.2
答案 1 :(得分:2)
我在jupyter中有这个错误,但没有IPython。已固定$ conda install matplotlib=2.0.2
,但有六个未降级。别忘了(就像我一样)重启内核。
答案 2 :(得分:0)
我有同样的问题。 降级到matplotlib 2.0.2似乎可以解决此问题。
pip uninstall matplotlib
pip install matplotlib==2.0.2