赞
踩
今天我们主要汇总如何使用使用ubuntu,CentOS,Mac更新Pytorch和torchvision,以及如何查看当前python版本。本教程只汇集如何使用pip,conda更新以及卸载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重新安装
pip uninstall torch
使用conda安装指定版本
# 比如我们安装 v10.0
conda install pytorch=10.0 -c soumith
使用pip安装指定版本
python3版本
pip3 install https://download.pytorch.org/whl/cu100/torch-1.1.0-cp37-cp37m-linux_x86_64.whl
pip3 install https://download.pytorch.org/whl/cu100/torchvision-0.3.0-cp37-cp37m-linux_x86_64.whl
1、使用conda卸载Pytorch
conda uninstall pytorch
conda uninstall libtorch
2、使用pip卸载Pytorch
pip uninstall torch
有时候我们想要知道当前的pytorch版本,我们可以使用如下代码打印出当前的版本:
python
>>>import torch
>>>print(torch.__version__)
python
>>>import torch
>>>torch.version.cuda
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。