本地安裝時需要注意的是第三方庫匹配的問題
例如出現opencv_python-2.4.13-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.
需要檢視pip所支援的格式,來自
import pip._internal
print(pip._internal.pep425tags.get_supported())
import pip
print(pip.pep425tags.get_supported())
輸出如下所示,
通過,這個查詢對應的版本檔案即可。其中cp為python的版本。win-amd64為作業系統。
Python pip工具安裝各種庫
windows 使用者 windows r 輸入cmd或powershell 然後輸入下面 注意 中的x是你要的庫名 pypi.tuna.tsinghua.edu.cn x一些常用庫如下 python 安裝 opencv pypi.tuna.tsinghua.edu.cn opencv python...
安裝python pip工具
新增環境變數到path python36 path python36 path script 2 測試是否安裝了pip,如果沒有安裝,需要用easy insall命令。easy install.exe 在 python36 path script資料夾中,新增到path中後,但是還是無法呼叫裡面的p...
python pip 安裝和使用
pip 是python包管理工具,該工具提供了對python包的查詢,下 載,安裝,解除安裝的功能。pip 官網 使用命令 pip version 判斷是否已安裝pip 安裝命令 curl o get pip.py sudo python get pip.py 注 使用相對應python版本執行安裝...