whl模块文件下载链接
查看电脑适配模块的语法:
pip 20.0以下版本可用的方法
32位
import pip
print(pip.pep425tags.get_supported())
64位语法
(新版本)
import pip._internal.pep425tags
print(pip._internal.pep425tags.get_supported())
(老版本)
import pip._internal
print(pip._internal.pep425tags.get_supported())
pip 20.0以上版本可用的方法
在 命令行 中直接输入
pip debug --verbose
输入之后会得到大量代码 从中我们可以看到Compatible tags的字样,这些就是当前Python版本可以适配的标签。 参照以下老哥文章: https://blog.csdn.net/qq_38161040/article/details/88062405 https://blog.csdn.net/happywlg123/article/details/107281936