我正试图用Windows安装Py火炬,我使用的是官方网站https://pytorch.org/get-started/locally/的命令
pip3 install torch==1.2.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stable.html如果选择Windows、Cuda 10.0和Python3.7,这是命令,但如果运行此命令,则会得到错误消息:
ERROR: Could not find a version that satisfies the requirement torch==1.2.0 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.2.0那为什么会发生这种事?我的pip是19.2版本,我在一个新安装的python3.7环境中
发布于 2021-12-29 07:02:01
只是降低了您的python版本的级别。我使用Python3.10,然后卸载它并重新安装python3.7。它开始为我工作
https://stackoverflow.com/questions/57499002
复制相似问题