close
主要問題: 相同Python版本,但還是遇到ERROR: Fiona-1.8.13-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform
安裝Python 套件的時候,套件名稱後面的數字代表版本:
Fiona-1.8.13 其中 1.8.13 代表版本。
cp37-cp37m-win_amd64.whl 的 37代表 Python 3.7,而 cp37-cp37m-win_amd64.whl的資訊如何在 Python中查到呢?
輸入下列指令就可以知道自己安裝的Python有沒有支援這樣的組合:
先到 CMD 模式輸入 Python,進入Python編輯模式:
再輸入
import pip._internal
print(pip._internal.pep425tags_get_supported())
就可以得到如上圖的資訊。
文章標籤
全站熱搜
留言列表