pytorch更新

Pytorch如何更新版本与卸载,使用pip,conda更新卸载Pytorch

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

最近Pytorch从v0.1.12更新到了v0.2/v0.3,支持了不少方法,若是你们想知道详细内容能够去Pytorch v0.2版本发布--高阶梯度,分布式PyTorch,广播,高级索引,新图层等 查看,以及Pytorch v0.3.0版本发布--pytorch性能优化提速,支持ONNX,高阶梯度以及SparseAdam优化器,好的,咱们今天主要讲解如何升级Pytorch以及如何卸载Pytorch。python

1、更新Pytorch和torchvision

咱们主要讲解如何因此pip,conda更新Pytorch和torchvision,这样你就可使用ubuntu,CentOS,Mac更新Pytorch和torchvisionnginx

一、使用Pip更新Pytorch和torchvision
  1.  
    # 列举pip当前能够更新的全部安装包
  2.  
    pip list --outdated --format=legacy
  3.  
    # 更新pytorch和torchvision安装包
  4.  
    pip install --upgrade pytorch torchvision
二、使用conda更新Pytorch和torchvision
  1.  
    # 建议将其添加soumith为您的Anaconda(或Miniconda)的源服务器
  2.  
    conda config --add channels soumith
  3.  
    # 更新pytorch和torchvision安装包
  4.  
    conda update pytorch torchvision
三、卸载Pytorch从新安装

若是上面的方法没法更新pytorch,您能够卸载再从新安装pytorch,卸载方法以下:sql

pip uninstall torch

安装能够参考Pytorch如何安装,Linux的安装Pytorch,OSX安装Pytorch教程ubuntu

2、如何安装指定版本Pytorch

使用conda安装指定版本
  1.  
    # 好比咱们安装 v0.1.10
  2.  
    conda install pytorch=0.1.10 -c soumith
使用pip安装指定版本
pip install pytorch==0.1.10

3、卸载Pytorch

一、使用conda卸载Pytorch
  1.  
    conda uninstall pytorch
  2.  
    conda uninstall libtorch
二、使用pip卸载Pytorch
pip uninstall torch

4、如何查看当前pytorch版本

有时候咱们想要知道当前的pytorch版本,咱们可使用以下代码打印出当前的版本:性能优化

  1.  
    import torch
  2.  
    print(torch.__version__)

原创文章,转载请注明 : Pytorch如何更新版本与卸载,使用pip,conda更新卸载Pytorch - pytorch中文网 原文出处: https://ptorch.com/news/37.html 问题交流群 :168117787
相关文章
相关标签/搜索