Pytorch如何更新版本與卸載

題主是將0.1_2版本更新到0.2版本的pytorch。

首先進行pytroch的卸載

1、使用conda卸載Pytorch

conda uninstall pytorchn conda uninstall libtorch n

2、使用pip卸載Pytorch

pip uninstall torch n

卸載完之後,進行重新安裝:進入官網,選擇適合自己pc的配置,比如我的是:

敲入命令conda install pytorch torchvision -c soumith,自動會安裝最新版的torch。

安裝好之後,進入python環境進行測試:

import torchn

發現爆下面的錯誤:

於是去網上看錯誤的解決辦法,解決辦法是將原來的numpy進行升級即可,

pip install numpy --upgrade

升級numpy之後,就可以正常使用了,現在的pytorch版本就是0.2版本了。

推薦閱讀:

Pytorch源碼與運行原理淺析--網路篇(一)
深度學習新手必學:使用 Pytorch 搭建一個 N-Gram 模型
項目推薦:自然場景中文文字檢測和不定長中文OCR識別
PyTorch實戰指南
【筆記】Finding Tiny Faces

TAG:PyTorch | Python | 机器学习 |