Anaconda及tensorflow2.3.0、pytorch1.6安裝記錄
視頻過程請進(jìn):https://www.bilibili.com/video/BV1nK4y1e7Ke/
我的python版本3.5.2,有點(diǎn)舊了,跟不上時(shí)代,但是更新的話又得卸載再安裝新的版本,這樣一來我原來安裝python的很多庫就得重新安裝了。
據(jù)說Anaconda這個(gè)軟件能解決這個(gè)問題,并能很好在安裝時(shí)的提供依賴,是安裝順利完成,索性把舊的python卸載了,裝這個(gè)試試。
1、卸載python
方法,https://www.python.org/downloads/打開python官網(wǎng)下載你對應(yīng)的舊版本(用于卸載):

下載到本地:

雙擊舊版本安裝程序點(diǎn)擊Uninstall卸載(如果下對了舊版本是會(huì)出現(xiàn)卸載提示的):



2、安裝anaconda
打開www.anaconda.com





等下載完成:


雙擊打開程序開始安裝:











出現(xiàn)了程序主界面,右側(cè)是啟動(dòng)圖標(biāo),launch為已安裝的庫,可以直接啟動(dòng),install為沒安裝的庫,按你需要安裝即可:



1、清華源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
# 設(shè)置搜索時(shí)顯示通道地址
conda config --set show_channel_urls yes
?
2、中科大源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes
?
3、重置回默認(rèn)源
conda config --remove-key channels
?
接下來直接在這個(gè)環(huán)境安裝你需要的庫(比如我要裝tensorflow):
?打開win命令行,然后就是輸入命令(網(wǎng)絡(luò)好的話可以不加“-i 源地址”):
pip install tensorflow-gpu -i https://pypi.mirrors.ustc.edu.cn/simple/



運(yùn)行一下tensorflow:

?提示錯(cuò)誤:ImportError: DLL load failed while inporting _pywrap_ tensorflow_ internal: 找不到指定的模塊。
裝一下必要的環(huán)境,到這個(gè)網(wǎng)址下載安裝:https://aka.ms/vs/16/release/vc_redist.x64.exe

完成后重啟電腦后再次運(yùn)行tensorflow,成功??!真是激動(dòng)人心,之前好久都沒有裝上。

裝個(gè)pytorch:
打開https://pytorch.org/get-started/locally/
選好自己的需要:

pip install torch==1.6.0+cpu torchvision==0.7.0+cpu -f https://download.pytorch.or
g/whl/torch_stable.html

如果安裝完成,import torch 失敗:
跟著上面安裝tensorflow的一樣,裝過vc_redist.x64.exe了就沒這個(gè)錯(cuò)誤:

至此,可以看出安裝完成anaconda后也是可以像原生安裝python一樣使用的。
?
升級python和conda版本在Prompt窗口中輸入執(zhí)行就可以了:conda updata python
