赞
踩
cp35、cp36这样的标志,这就代表你要安装进的那个环境中的python版本(3.5、3.6)
import pip
print(pip.pep425tags.get_supported())
import pip._internal
print(pip._internal.pep425tags.get_supported())
直接在命令行中输入,不要在Python解释器输入
以下命令:pip debug --verbose
Compatible tags
字样,这些就是当前Python版本可以适配的标签。参考链接(十分详细):https://blog.csdn.net/happywlg123/article/details/107281936
cp36, cp36m, manylinux1_x86_64
)pip list
查一下你有没有wheel
这个库,没有的话自己手动装一下whl文件
(方法为: pip install *.whl
),进入pytorch的whl存放的目录,输入pip install torch-1.4.0-cp36-cp36m-linux_x86_64.whl
进行安装cp36, cp36m, manylinux1_x86_64
)pip install torchvision-0.5.0-cp36-cp36m-manylinux1_x86_64.whl
安装Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。