当前位置: 代码迷 >> python >> setuptools:通过下载链接安装pytorch:403禁止
  详细解决方案

setuptools:通过下载链接安装pytorch:403禁止

热度:107   发布时间:2023-07-16 10:47:08.0

我试图将pytorch包含在setuptools的要求列表中:

install_requires=[
      'torch'
      ],
dependency_links=[
      'http://download.pytorch.org/whl/cpu/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl' '@develop#egg=torch'
      ],

但是在运行python setup.py develop之后,我收到:

error: Can't download http://download.pytorch.org/whl/cpu/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl@develop#egg=torch: 403 Forbidden

我也尝试使用源代码安装链接而不是pip链接:

install_requires=[
      'torch'
      ],
  dependency_links=[
      'https://github.com/pytorch/pytorch#from-source' '@develop#egg=torch'
      ],

但是之后:

RuntimeError: PyTorch does not currently provide packages for PyPI (see status at https://github.com/pytorch/pytorch/issues/566).

通过setuptools安装pytorch的正确方法是什么? (注意:在我的情况下,不能使用anaconda)

谢谢。

编辑

如答案中所建议,我也尝试过:

dependency_links=[
      'https://github.com/pytorch/pytorch'
      ],


dependency_links=[
      'https://github.com/pytorch/pytorch#egg=torch'
      ],


dependency_links=[
      'http://download.pytorch.org/whl/cpu/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl'
      ],

并收到:

RuntimeError: PyTorch does not currently provide packages for PyPI (see status at https://github.com/pytorch/pytorch/issues/566).

第一个错误:如果您使用直接URL到wheel文件:

http://download.pytorch.org/whl/cpu/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl

您不得使用@develop#egg=torch 该部分用于从git之类的VCS安装。

第二个网址

https://github.com/pytorch/pytorch#from-source

也错了。 它应该是

https://github.com/pytorch/pytorch

如果您要安装develop分支,这里@develop#egg=torch是完全正确的。