手動安裝python第三方庫

2021-09-29 02:14:44 字數 1597 閱讀 7435

手動安裝請到https:

~gohlke/pythonlibs/

然後在用命令列pip install whl檔案路徑

這時可能會出現錯誤

isnot a supported wheel on this platform

那是因為你的檔名錯誤,也就是說用pip安裝第三庫的whl檔案的名字不規範

以下是規範的名字[(

'cp27'

,'none'

,'win32'),

('py2'

,'none'

,'win32'),

('cp27'

,'none'

,'any'),

('cp2'

,'none'

,'any'),

('cp26'

,'none'

,'any'),

('cp25'

,'none'

,'any'),

('cp24'

,'none'

,'any'),

('cp23'

,'none'

,'any'),

('cp22'

,'none'

,'any'),

('cp21'

,'none'

,'any'),

('cp20'

,'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')]

假設你的whl檔案名叫

pyhook-

1.5.1

-cp36-cp36m-win32

應該修改為

pyhook-

1.5.1

-cp36-none-win32

修改完之後在pip install 修改後的whl檔案路徑

////

////

////

////

////

////

///////

以上是在windows中安裝

在linux安裝建議修改檔案最後的名字

比如pyhook-

1.5.1

-cp36-cp36m-win32修改為pyhook-

1.5.1

-cp36-cp36m-

any我試過修改為none但不起作用,修改為any就可以了

Python 手動安裝第三方包

python 安裝第三方包時 常用以下方法,方便快捷,pip install watchdog 但是有些包就是不能自動安裝成功,就得手動安裝。2.將whl檔案放到python環境下lib下的site packages下,3.cmd到whl路徑執行pip install watchdog,這樣是安裝到...

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...