Tuyun 发表于 2021-5-11 09:02:47

【包的安装问题】

64位的windows系统,选择哪个安装包啊?
我下了win_amd64和win32结尾的,安装的时候都提示xxx is not a supported wheel on this platform

Twilight6 发表于 2021-5-11 09:20:33


不是看系统是多少位的,是看你的 Python 下载安装的是什么位数的

而且用 wheel 安装时候一般情况还要安装下 wheel 库

python -m pip install wheel -i https://pypi.tuna.tsinghua.edu.cn/simple

上图中 cp37cp38 一般就对应版本 Python 3.7、3.8安装时版本也要对应

另外你可以试试换个源直接 pip 安装库,这样方便些:

python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

页: [1]
查看完整版本: 【包的安装问题】