我一直在尝试使用pip在虚拟环境中安装matplotlib。
在尝试虚拟环境后,我尝试了:
$pip install matplotlib
但是我收到了错误:
unable to execute 'c++' : No such file or directory
error : command 'c++' failed with exit status 1
------------------------------------------
Cleaning up
我在ubuntu 14.04上,当不使用virtualenv时,matplotlib对我很有效,但是我希望能够在我的独立项目中使用它。
有什么建议吗?
答案 0 :(得分:1)
通过升级pip来解决这个问题,似乎在创建virtualenv时安装了1.5.4版本的问题。
$ pip install --upgrade pip
然后使用pip安装matplotlib
$pip install matplotlib