Python模块没有安装

时间:2016-05-12 22:28:43

标签: python-2.7 numpy matplotlib pip python-module

我有一些运行得很好的代码,在一天中,我打破了一些东西,现在我无法安装任何python模块。具体来说,我需要numpy,matplotlib和枕头。我无法安装任何一个。

但奇怪的是,它们似乎都安装得很好:

$ sudo pip install numpy
Collecting numpy
  Downloading numpy-1.11.0-cp27-cp27mu-manylinux1_x86_64.whl (15.3MB)
    100% |████████████████████████████████| 15.3MB 94kB/s 
Installing collected packages: numpy
Successfully installed numpy-1.11.0

或者当我尝试时:

$ sudo apt-get install python-numpy
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  python-nose python-numpy-dbg python-numpy-doc
The following NEW packages will be installed:
  python-numpy
0 upgraded, 1 newly installed, 0 to remove and 20 not upgraded.
Need to get 0 B/1,763 kB of archives.
After this operation, 9,598 kB of additional disk space will be used.
Selecting previously unselected package python-numpy.
(Reading database ... 221259 files and directories currently installed.)
Preparing to unpack .../python-numpy_1%3a1.11.0-1ubuntu1_amd64.deb ...
Unpacking python-numpy (1:1.11.0-1ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up python-numpy (1:1.11.0-1ubuntu1) ...

我正在使用python 2.7,而我正在使用Ubuntu 16.04。

$ python
Python 2.7.5 (default, May 12 2016, 13:11:58) 
[GCC 5.3.1 20160413] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named numpy
>>> 

它为我尝试安装的任何模块执行此操作。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

这是默认python和默认pip不匹配的结果。要确保将软件包安装到正确的位置,请使用:

python -m pip install $PACKAGE

这会导致分配给所需pip的{​​{1}}而不是您路径中找到的第一个{。}}。

相关问题