无法使用python3.5导入numpy,但可以使用python2.7导入

时间:2017-05-31 14:58:12

标签: python python-3.x numpy

我可以使用内置python的numpy。但是使用python3.5解释器,它说

ImportError: No module named 'numpy'

但是当我输入$ sudo pip3 install numpy时,它会显示

"Requirement already satisfied: numpy in /root/.local/lib/python3.6/site-packages"

我该怎么办?

2 个答案:

答案 0 :(得分:1)

我之前遇到过类似的问题。当你运行pip3时,它实际上链接到你的python3.6中的pip。不同python发行版的包位于不同的文件夹中。 python3.5 -m pip install numpy应解决问题。

答案 1 :(得分:0)

使用pip3.5 install numpy或用户python3.6解释器将模块安装到python3.5。