今天我们主要汇总如何使用使用ubuntu,CentOS,Mac更新Pytorch和torchvision,以及如何查看当前python版本。本教程只汇集如何使用pip,conda更新以及卸载Pytorch和torchvision,希望对您有所帮助!

最近Pytorch从v0.1.12更新到了v0.2/v0.3,支持了很多方法,如果大家想知道详细内容可以去Pytorch
v0.2版本发布--高阶梯度,分布式PyTorch,广播,高级索引,新图层等 <https://ptorch.com/news/34.html> 查看,以及
Pytorch v0.3.0版本发布--pytorch性能优化提速,支持ONNX,高阶梯度以及SparseAdam优化器
<https://ptorch.com/news/94.html>,好的,我们今天主要讲解如何升级Pytorch以及如何卸载Pytorch。

一、更新Pytorch和torchvision


我们主要讲解如何所以pip,conda更新Pytorch和torchvision,这样你就可以使用ubuntu,CentOS,Mac更新Pytorch和torchvision

1、使用Pip更新Pytorch和torchvision
# 列举pip当前可以更新的所有安装包 pip list --outdated --format=legacy #
更新pytorch和torchvision安装包 pip install --upgrade pytorch torchvision
2、使用conda更新Pytorch和torchvision
# 建议将其添加soumith为您的Anaconda(或Miniconda)的源服务器 conda config --add channels soumith
# 更新pytorch和torchvision安装包 conda update pytorch torchvision
3、卸载Pytorch重新安装

如果上面的方法无法更新pytorch,您可以卸载再重新安装pytorch,卸载方法如下:
pip uninstall torch
安装可以参考Pytorch如何安装,Linux的安装Pytorch,OSX安装Pytorch教程
<https://ptorch.com/news/30.html>

二、如何安装指定版本Pytorch

使用conda安装指定版本
# 比如我们安装 v0.1.10 conda install pytorch=0.1.10 -c soumith
使用pip安装指定版本
pip install pytorch==0.1.10
三、卸载Pytorch

1、使用conda卸载Pytorch
conda uninstall pytorch conda uninstall libtorch
2、使用pip卸载Pytorch
pip uninstall torch
四、如何查看当前pytorch版本

有时候我们想要知道当前的pytorch版本,我们可以使用如下代码打印出当前的版本:
import torch print(torch.__version__)
原创文章,转载请注明 :Pytorch如何更新版本与卸载,使用pip,conda更新卸载Pytorch - pytorch中文网
<https://ptorch.com/news/37.html>
原文出处: https://ptorch.com/news/37.html
问题交流群 :168117787

友情链接
ioDraw流程图
API参考文档
OK工具箱
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:ixiaoyang8@qq.com
QQ群:637538335
关注微信