Windows系統中安裝Python模組pip numpy matplotlib
Windows系統中安裝Python模組pip numpy matplotlib
step2: Win+R執行cmd,開啟終端,輸入
- python
step3: 進入cmd後安裝pip只需要一句命令列:
python -m pip install -U pip
PS:一定要將pip.exe所在的路徑新增到Path裡,pip檔案一般在python安裝包的script目錄下,否則會報錯pip不是內部命令。
二、Windows安裝numpy
安裝完pip再安裝numpy, 在網站https://pypi.python.org/pypi/numpy下載與python版本對應的whl,否則會報錯不支援平臺,本機python2.7對應下載:numpy-1.11.2+mkl-cp27-cp27m-win32.whl.
step1:進入cmd,使用cd命令進入whl存放的目錄。這裡把whl儲存在D:\Program Files\python27目錄下,再輸入命令列
pip install "numpy-1.11.2+mkl-cp27-cp27m-win32.whl"
如圖所示表示安裝成功了,這樣你就可以隨便使用numpy模組了,嘗試在python中輸入:import numpy是否出錯。
三、Windows安裝matplotlib
Matplotlib是一個Python的圖形框架,類似於MATLAB和R語言。Matplotlib的官網地址是 http://matplotlib.org/ ,下載地址為 http://matplotlib.org/downloads.html,選擇對應的版本即可安裝,我選擇的版本為 matplotlib-1.3.1.win32-py2.7.exe下載地址:https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.3.1/matplotlib-1.3.1.win32-py2.7.exe ,下載完成後,直接執行即可安裝使用
Windows安裝matplotlib教程可以參考https://my.oschina.net/bery/blog/203595
相關文章
- python實踐系列之(一)安裝 python/pip/numpy/matplotlibPython
- windows下python安裝Numpy和Scipy模組WindowsPython
- Python中的Numpy、SciPy、MatPlotLib安裝與配置Python
- windows中安裝pip工具Windows
- Linux系統中安裝pipLinux
- windows下python配置numpy、matplotlib、scipyWindowsPython
- Python中Numpy及Matplotlib使用Python
- python(pip)包/模組:如何離線安裝?Python
- pip進行模組安裝
- pip安裝模組失敗
- pip 命令安裝模組包
- 安裝python pip,再安裝request模組,執行python程式碼Python
- windows 安裝python後pip安裝路徑問題WindowsPython
- 在Windows系統中安裝Python【完整流程】WindowsPython
- Python pip安裝Python
- python安裝pipPython
- 在windows上安裝numpyWindows
- windows下安裝pip,強制升級pip,安裝tensorflowWindows
- Windows下安裝Python、matplotlib包 及相關WindowsPython
- Python 庫/模組的pip安裝和IPython的使用Python
- pip高階玩法,讓python模組安裝飛起來Python
- Windows10上pip安裝Windows
- Windows下Python安裝併為pip配置阿里映象WindowsPython阿里
- windows下python繪相簿matplotlib安裝方法(親測)WindowsPython
- python怎麼在windows系統中安裝 的內容PythonWindows
- Python - Matplotlib and Numpy on Debian/UbuntuPythonUbuntu
- python中的pip的安裝以及通過pip命令對selenium進行解除安裝和安裝Python
- Python pip的安裝及解除安裝Python
- 如何安裝python模組 pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.comPythonHTTPRust
- python怎麼安裝pip?Python
- python 如何安裝numpy庫?Python
- pip安裝模組超時怎麼處理
- windows 安裝 Pillow 模組Windows
- 重灌/安裝Windows系統Windows
- NumPy、SciPy 等Python包在Windows下的whl安裝包下載PythonWindows
- Centos7.2中安裝pipCentOS
- 怎樣安裝windows10系統_如何安裝Windows10系統Windows
- python必須安裝pip嗎Python