1. 程式人生 > >使用cmd安裝python的matplotlib庫

使用cmd安裝python的matplotlib庫

開啟cmd進入…\venu\Scripts目錄,首先用命令

python -m pip list

提示No module named pip,直接輸入命令

pip.exe

提示 pkg_resources.DistributionNotFound: The ‘pip==10.0.1’ distribution was not found and is required by the application,根據提示可以輸入命令

easy_install pip==10.0.1

安裝pip,安裝結束後輸入命令

pip install -U setuptools

進行安裝模組的升級,升級完成後安裝matplotlib模組,命令是

python -m pip install matplotlib

即可成功安裝。安裝完成後可以使用命令

python -m pip list

檢視已經安裝的模組。