setuptools:从下载安装 pytorch link:403 Forbidden

setuptools: installing pytorch from download link: 403 Forbidden

我正在尝试将 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

我还尝试使用源安装 link 而不是 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。该部分用于从 VCS 安装,如 git.

第二个URL

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

也是错误的。应该是

https://github.com/pytorch/pytorch

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