我正在尝试在Ubuntu 12.04中使用numpy
和python3
。终端中的命令python3
返回:
Python 3.2.3 (default, Oct 19 2012, 20:13:42)
[GCC 4.6.3] on linux2
当我尝试导入numpy
时,我收到错误:
import numpy as np
ImportError: No module named numpy
所以我尝试用以下方法安装它:
sudo pip install numpy
返回:
Requirement already satisfied (use --upgrade to upgrade): numpy in /usr/lib/python2.7/dist-packages
所以它已经安装但是对于python2.7而且显然我需要为python3安装numpy
。如果我这样做:
sudo pip install upgrade
我明白了:
Could not find any downloads that satisfy the requirement upgrade
No distributions at all found for upgrade
我尝试过发布here的解决方案,即:
sudo apt-get install python3-pip
未找到。我已经离开here但我只看到可以下载python3的Windows版本。
答案 0 :(得分:4)
如果您想从Ubuntu存储库安装它,这更容易,但版本较旧,请尝试
sudo apt-get install python3-numpy
如果你想通过pip
,你应该从
sudo apt-get install python3-setuptools
然后你会有easy_install-3.2
之类的东西可以用来
sudo easy_install pip
然后
sudo pip-3.2 install numpy