一、安裝環境 Windows10 64、python2.7 二、Numpy下載 1、下載Numpy: 下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy cp27表示python2.7,因為我的python是amd64的,所以我下載了nump ...
一、安裝環境
Windows10 64、python2.7
二、Numpy下載
1、下載Numpy:
下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
cp27表示python2.7,因為我的python是amd64的,所以我下載了numpy‑1.13.3+mkl‑cp27‑cp27m‑win_amd64.whl
2、安裝Numpy
打開命令行工具,cd到你下載的目錄
輸入(*****表示省略的部分文件名): pip install numpy*****.whl
1)可能出現的問題1:
You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
解決辦法:複製上面提示中單引號部分
輸入:python -m pip install --upgrade pip2)
問題2:
numpy-******.whl is not a supported wheel on this platform.
問題分析:
1、可能是你下載的版本不適合你的電腦,比如你的python是amd64的你下載了win32
解決:可以輸入:python 在第一行提示信息中可以看見你python的多少位
2、可能是你下載的whl包命名錯誤。
D:\>python
>>> import pip
>>> print(pip.pep425tags.get_supported())
[('cp27', 'cp27m', 'win_amd64'), ('cp27', 'none', 'win_amd64'), ('py2', 'none', 'win_amd64'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]
由上可知,文件名中必須包括上面數組中,元組中的三個字元串。
比如:numpy-1.10.4+mkl-cp27-cp27m-win32.whl
修改為:numpy-1.10.4+mkl-cp27-none-win32.whl
安裝成功後會提示:Successfully installed numpy-******
三、安裝Scipy
1、下載Scipy
下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
2、安裝Scipy
打開命令行工具,cd到你下載的目錄
輸入(*****表示省略的部分文件名): pip install scipy*****.whl
四、安裝matplotlib
1、下載matplotlib
下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib
2、安裝matplotlib
打開命令行工具,cd到你下載的目錄
輸入(*****表示省略的部分文件名): pip install matplotlib*****.whl