赞
踩
使用pip pip3和pycharm导入pychorm 无果后在https://www.lfd.uci.edu/~gohlke/pythonlibs/#pytorch上寻找符合本机要求
的模板,在当前目录下pip这个模板报错is not a supported wheel on this platform的错误:
经过摸索发现通过本地安装的模板的文件名需要与本机python要求
在pycharm 下输入
import pip._internal
print(pip._internal.pep425tags.get_supported())
查看能匹配的文件
[('cp37', 'cp37m', 'win32'), ('cp37', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp37', 'none', 'any'), ('cp3', 'none', 'any'), ('py37', 'none', 'any'), ('py3', 'none', 'any'), ('py36', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
然后查看下载包的文件名为torch‑1.0.0‑cp37‑cp37m‑win_amd64.whl 改为torch‑1.0.0‑cp37‑cp37m‑win64.whl
注:不要强行该文件名 这样即使安上了也用不了 必须找到符合要求的
然后安装 成功安装
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。