1、開啟anaconda prompt 輸入conda list 就會顯示已經安裝好的庫
2、如果這些庫中沒有自己需要的庫就可以用
anaconda search -t conda tensorflow 查詢需要的庫這樣就會顯示你要安裝的有哪些版本
3、在使用 anaconda show 檔名 就會告訴如何安裝對應的庫
4、最後複製上面的install 就可以安裝了。
更新:pip install 庫名
pip install 庫名 --upgrade
# 或者
conda install 庫名
conda update 庫名
# 更新所有庫
conda update --all
# 更新 conda 自身
conda update conda
# 更新 anaconda 自身
conda update anaconda
---------------------
from:
5、安裝過程報錯:
「unsatisfiableerror: the following specifications were found to be in conflict」
解決方法:執行conda update conda 更新一下conda,再執行就好了
python pip 安裝第三方庫
例如 為python安裝matplotlib模組 matplotlib 是乙個 python 中強大的 2d繪相簿 首先確保已經安裝python,然後用 pip來安裝matplotlib模組。1 進入到 cmd視窗下,進入python安裝目錄,如 cd c python34 scripts 2 執行...
Python 安裝第三方庫
1 pip工具 pip安裝目錄 c python34 scripts 確認pip是否安裝,執行 pip v c python34 scripts pip v 顯示 pip 9.0.3 from c python34 lib site packages python 3.4 安裝第三方庫 pyexce...
Python安裝第三方庫
pip install 安裝庫名 可能存在的問題 對於過大的第三方庫,建議使用第 二 三種方法 安裝執行cmd,開啟命令列介面,cd c python3 scripts 進入到scripts資料夾下。複製第三方庫包的全部名字,例如 numpy 1.15.4 cp37 none win amd64.w...