Anaconda換源小記

2022-04-06 08:15:43 字數 1160 閱讀 2719

如果還沒有安裝可以參考:

一鍵更新所有庫conda update --all

清華源現在獲取到了授權

conda config --add channels 

conda config --add channels

conda config --set show_channel_urls yes

old:

清華的源有時候有點小問題,所以換成中科大的:

手動快速換源:(沒有vscode的可以使用vi開啟)

命令換源:先conda config --remove key valueconda config --add key value

我的配置檔案:~/.condarc

channels:

- -

- -

- -

- defaults

show_channel_urls: true

附中科大源:

conda config --add channels 

conda config --add channels

conda config --set show_channel_urls yes

擴充套件:

conda config --add channels 

conda config --add channels

conda config --add channels

conda config --add channels

Anaconda 安裝 使用 換源 更新

anaconda用法 檢視已經安裝的包 pip list 或者 conda list 安裝和更新 pip install requests pip install requests upgrade 或者conda install requests conda update requests 更新所有...

Anaconda的安裝及換源

2.進行安裝 3.新增至環境變數 4.測試 5.換源及更新 在 控制面板 系統和安全 系統 高階系統設定 環境變數 使用者變數 path 中新增 anaconda的安裝目錄的scripts資料夾。進入cmd,輸入 conda version 返回以下結果,證明安裝成功。進入cmd,依次輸入以下命令 ...

anaconda換源及建立虛擬環境

0x01 換源,依次輸入一下兩條命令 conda config add channels config set show channel urls yes0x02 建立虛擬環境 conda create n tensorflow python 3.5 tensorflow為建立的這個虛擬環境的名稱,...