# 下面兩個是conda官方庫的映象
conda config --add channels
conda config --add channels
# conda第三方庫 conda forge
conda config --add channels
# conda第三方庫 pytorch
conda config --add channels
# conda第三方庫 msys2
conda config --add channels
# conda第三方庫 bioconda
conda config --add channels
# conda第三方庫 menpo
conda config --add channels
conda config --set show_channel_urls yes
或者直接進行檔案編輯~/.condarc
channels:
- defaults
show_channel_urls: true
channel_alias:
default_channels:
- /pkgs/main
- /pkgs/free
- /pkgs/r
- /pkgs/pro
- /pkgs/msys2
custom_channels:
conda-forge: /cloud
msys2: /cloud
bioconda: /cloud
menpo: /cloud
pytorch: /cloud
******itk: /cloud
其他第三方的源
# 中科大的源
conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
執行conda clean -i
清除索引快取,保證用的是映象站提供的索引。
conda config --remove-key channels
移除某個特定的源
conda config --remove channels ''
linux-64/cudnn-7.1.3-cuda8.0_0.tar.bz2
conda install --use-local cudnn-7.1.3-cuda8.0_0.tar.bz2
官方:
阿里雲:
清華大學:
豆瓣:
linux/unix中使用:
vim ~/.pip/pip.conf
新增或修改pip.conf(如果不存在,建立乙個)
[global]
index-url =
[install]
use-mirrors =true
mirrors = /
trusted-host = pypi.doubanio.com
pip install package -i
pip install package.whl
4,pip同樣安裝來自於網際網路中倉庫**所形成的的庫,安裝命令如下
pip install git+以安裝
為例,則是
pip install git+
關於conda新增清華源以及更改為原源的問題
1.如果安裝一些tensorflow pytorch等一些框架是網速過慢,可以新增清華源解決。先用activate啟用自己之前建立的環境後,在命令列輸入以下 conda config add channels conda config add channels conda config set sh...
樹莓派 樹莓派軟體安裝及公升級源更換成清華映象源
1 開啟配置sources.list檔案 sudo nano etc apt sources.list 2 用 注釋掉原檔案內容,用以下內容取代 ctrl o 儲存再 ctrl x 退出 deb stretch main contrib non free rpideb src stretch mai...
給Ubuntu新增清華的軟體源
找到 sources.list 檔案 cd etc apt 編輯vim sources.list 在最後面加上下面這幾條語句 預設注釋了原始碼映象以提高 apt update 速度,如有需要可自行取消注釋 deb xenial main restricted universe multiverse ...