我正在尝试为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]
但是以上链接已损坏,我无法打开它。
答案 0 :(得分:0)
答案 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]
安装。