@python
一、下載一個twisted包this
安裝Twisted,進入https://www.lfd.uci.edu/~gohlke/pythonlibs 下載對應twistedcode
下載好以後 ,我將Twisted-18.4.0-cp36-cp36m-win_amd64.whl,放在E:\\Twisted-18.4.0-cp36-cp36m-win_amd64.whlorm
根據你的Python的版本選擇合適的包,名稱中間的cp36是python3.6的意思,amd64是python的位數blog
在安裝python的whl包時,出現瞭如下問題:
圖片
Twisted-20.3.0-cp38-cp38-win32.whl is not a supported wheel on this platform.
由於whl包是在該網址下載的:https://www.lfd.uci.edu/~gohlke/pythonlibs .
本人python版本是3.8.0,因此下載所需whl包時,下載的是:Twisted-20.3.0-cp38-cp38-win32.whl,剛開始下載了win_amd64.whl版本的。ip
根據網上查找的解決方法:下載32位的便可,可是,很不幸,個人仍是這問題:
ci
# 進入python,輸入如下代碼,查看pip支持的類型 import pip._internal print(pip._internal.pep425tags.get_supported()) 運行結果: [('cp38', 'cp38m', 'win32'), ('cp38', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp38', 'none', 'any'), ('cp3', 'none', 'any'), ('py38', 'none', 'any'), ('py3', 'none', 'any'), ('py37', 'none', 'any'), ('py36', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
能夠看到,咱們下載的whl包,命名不符合python3.8.0的安裝支持,將其命名爲:Twisted-20.3.0-cp38-cp38m-win32.whl 便可。
從新進行安裝:get
pip install E:\Twisted-20.3.0-cp38-cp38m-win32.whl
安裝成功,問題成功解決。pip