Ubuntu16.04自带python 2.7.12 和python 3.5.2,不需要自己装python
第一步:安装pip3
sudo apt-get install python3-pip
顺便安装numpy
pip3 install numpy
第二步:配置pip使用的镜像源
------------------------------------------------------------------------------------------------
国内镜像源列表
豆瓣(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/
------------------------------------------------------------------------------------------------
参照经验贴,采用ailiyun镜像
运行命令:
cd ~/.pip
如果不存在该文件夹则:
mkdir ~/.pip
cd ~/.pip
touch pip.conf
gedit pip.conf
此时会跳出pip.conf窗口,在pip.conf中添加以下内容:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
第三步:安装pytorch
运行命令:
pip install torch torchvision
下载速度还挺快的
第四步:测试pytorch是否安装成功
在终端输入
python3(注意是输入python3,如果只输入python,会默认是python2,当然,之后你也可以自己更改python的默认版本)
import torch
import torchvision
结果如图:
没有报错,说明安装成功。
补充:
1.查看当前PyTorch版本:
import torch
print(torch.__version__)
2.卸载PyTorch:
sudo pip3 uninstall torch
3.直接安装指定版本的PyTorch
sudo pip3 install pytorch==0.3.1
参考文献:
推荐:Ubuntu16.04安装pytorch
https://blog.csdn.net/qq_42165939/article/details/86181585?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
机器人操作系统ROS学习(一)
机器人操作系统ROS学习(二)
Ubuntu16.4安装ros kinetic(三)
ROS-常用组件(四)
ROS机器人建模与仿真(五)