pytorch的安装

首先查看python版本,运行python命令;
然后查看pip对应的python是什么,运行pip -version;
接着查看cuda版本,运行cat /usr/local/cuda/version.txt。

因为我的系统是Ubuntu系统,cuda是9.0,python是3.5,pip3对应的是python3.5版本。所以,接着运行命令:

# 安装pytorch,cu90代表cuda9.0,cp35代表python3.5
pip3 install http://download.pytorch.org/whl/cu90/torch-1.0.0-cp35-cp35m-linux_x86_64.whl 
# 安装torchvision
pip3 install torchvision==0.4.1 -i https://mirrors.aliyun.com/pypi/simple/

这样就安装成功了,接着用代码测试一下:

import torch

x = torch.rand(5,3)
print(x)

国内镜像源列表

豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

https://download.pytorch.org/whl/torch_stable.html

参考文章内容:

可能由于pytorch官网在国外服务器的原因,下图中的Package Manage;Python; CUDA选择老半天也没反应过来,且Run this command后的内容迟迟没有显示出来。烦躁。已将各版本Run this command后的内容总结好。
在这里插入图片描述
Linux Ubuntu系统如何安装pytorch呢?只需两步。

1.找到对应的版本后,复制Run this command后面的内容,如下图:
在这里插入图片描述
2.打开终端,粘贴。

下面将Linux Ubuntu 系统下pytorch的安装指令总结:

pytorch安装命令

OS :Linux,

Package Manager :conda,

Python :2.7,

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

CUDA :8

Run this command: conda install pytorch torchvision -c pytorch

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

OS :Linux,

Package Manager :conda,

Python :3.5,

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

CUDA :8

Run this command: conda install pytorch torchvision -c pytorch

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

OS :Linux,

Package Manager :conda,

Python :3.6,

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

CUDA :8

Run this command: conda install pytorch torchvision -c pytorch

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

OS :Linux,

Package Manager :pip,

Python :2.7,

CUDA :7.5

Run this command:pip install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl
pip install torchvision

if the above command does not work, then you have python 2.7 UCS2, use this command

pip install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

CUDA :8

Run this command: pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl
pip install torchvision

if the above command does not work, then you have python 2.7 UCS2, use this command

pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

CUDA :9

Run this command: pip install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl
pip install torchvision

if the above command does not work, then you have python 2.7 UCS2, use this command

pip install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

CUDA :NONE

Run this command: pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl

pip install torchvision

if the above command does not work, then you have python 2.7 UCS2, use this command

pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

OS :Linux,

Package Manager :pip,

Python :3.5,

CUDA :7.5

Run this command: pip3 install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision

CUDA :8

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl

pip3 install torchvision

CUDA :9

Run this command: pip3 install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl
pip3 install torchvision

CUDA :NONE

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl

pip3 install torchvision

OS :Linux,

Package Manager :pip,

Python :3.6,

CUDA :7.5

Run this command: pip3 install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl
pip3 install torchvision

CUDA :8

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl

  pip3 install torchvision

CUDA :9

Run this command: pip3 install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl
pip3 install torchvision

CUDA :NONE

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl

pip3 install torchvision

OS :Linux,

Package Manager :Source,

Python :2.7, 3.5, 3.6

CUDA :7.5, 8, 9, None

Run this command: # Follow instructions at this URL:
https://github.com/pytorch/pytorch#from-source

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值