我是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>
我该如何解决这个问题。帮助将不胜感激
答案 0 :(得分:2)
在Windows上编译numpy并非易事。如果您是新手,最好使用预编译的二进制文件,来自Anaconda或EPD发行版,或来自Christoph Gohlke。
答案 1 :(得分:0)
好吧,您需要将pip
添加到PATH中。或者您可以运行python -m pip install numpy
。 Numpy
可能想要编译自己,所以你需要c++
编译器来实现python。 Check here
答案 2 :(得分:0)
我遇到了类似的问题,我无法运行用于使用numpy
数组对象的代码。
即使在我的pyCharm
中它也显示为已导入。
然后出现intellisense
。
我做了什么:
$python -m pip install --upgrade pip
$pip uninstall numpy
$pip install numpy
这对我来说很好,代码按预期执行/解释。