在Windows 10中使用pip3安装numpy

时间:2016-05-21 10:58:08

标签: python numpy pip

我是python的新手。我在Windows 10中安装了python 3.5.1,现在我想安装numpy包。 Pip3已经在我的脚本文件夹中但我无法使用

安装包
pip3 install numpy

这是实际的命令行命令和错误

PS C:\Users\user\Appdata\Local\Programs\Python\python35-32> pip3 install numpy
pip3 : The term 'pip3' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pip3 install numpy
+ ~~~~
    + CategoryInfo          : ObjectNotFound: (pip3:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\user\Appdata\Local\Programs\Python\python35-32>

我该如何解决这个问题。帮助将不胜感激

3 个答案:

答案 0 :(得分:2)

在Windows上编译numpy并非易事。如果您是新手,最好使用预编译的二进制文件,来自Anaconda或EPD发行版,或来自Christoph Gohlke。

答案 1 :(得分:0)

好吧,您需要将pip添加到PATH中。或者您可以运行python -m pip install numpyNumpy可能想要编译自己,所以你需要c++编译器来实现python。 Check here

答案 2 :(得分:0)

我遇到了类似的问题,我无法运行用于使用numpy数组对象的代码。

即使在我的pyCharm中它也显示为已导入。

然后出现intellisense

我做了什么:

  1. 升级点 $python -m pip install --upgrade pip
  2. 卸载了以前的numpy: $pip uninstall numpy
  3. 安装numpy $pip install numpy

这对我来说很好,代码按预期执行/解释。