无法安装CUDA 9.0的PyTorch

时间:2019-08-27 06:08:38

标签: python pytorch ubuntu-18.04

我正在尝试为PyTorch安装CUDA 9.0(Ubuntu 18.04 LTS)。我按照official documentation的说明进行操作,该说明为

从以下html页面下载具有所需版本的whl文件: https://download.pytorch.org/whl/cu90/torch_stable.html

$ pip install [downloaded file]

但是以上链接已损坏,我无法打开它。

3 个答案:

答案 0 :(得分:0)

使用

中的链接

https://pytorch.org/

这是获得所需东西的最简单,最好的方法。

如果cuda 9.0无法正常工作,请尝试使用非cuda或cuda 9.2

答案 1 :(得分:0)

根据official documentation,您可以使用命令安装pytorch

df1 <- structure(list(Column1 = c("ID1234", "ID1456", "ID8572", "ID7234", 
"ID1247", "ID1256"), Column2 = c(123L, 396L, 345L, 645L, 356L, 
122L), Column3 = c(5L, 5L, 7L, 7L, 5L, 5L)), 
class = "data.frame", row.names = c(NA, 
-6L))

或者如果您喜欢Python 2

# for Python 3.x
pip3 install torch torchvision

答案 2 :(得分:0)

事实证明,https://download.pytorch.org/whl/cu90/torch_stable.html<a href>标签的列表,我们可以从浏览器进入源代码进行查看。然后,我们可以下载适当的版本并通过pip install [downloaded file]安装。