前言
今天在下載OpenCV的時(shí)候發(fā)現(xiàn)清華的conda channel鏡像已經(jīng)不能用了,故在此記錄:
1)如何顯示所有channel;
2)如何更換channel。
1 顯示所有channel
首先,conda config --show能夠顯示出所有conda的config信息。
如果我們只想看channels的信息,輸入conda config --show channels即可,如下:
(base) C:\Users\dehen>conda config --show channels
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- defaults
現(xiàn)在我們有兩個(gè)源,一個(gè)清華鏡像,一個(gè)defauls默認(rèn)下載源。
然而這個(gè)清華源已經(jīng)不能用了,我在下載opencv的時(shí)候,輸入:conda install opencv,但是報(bào)錯(cuò):
(base) C:\Users\dehen>conda install opencv
Solving environment: failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/win-64/repodata.json>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
ConnectionError(ReadTimeoutError("HTTPSConnectionPool(host='mirrors.tuna.tsinghua.edu.cn', port=443): Read timed out."))
所以我打算刪除這個(gè)源。
2 移除清華鏡像
輸入:conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
這個(gè)命令是為了移除之前conda config --show channels顯示的清華源。
(base) C:\Users\dehen>conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
(base) C:\Users\dehen>conda config --show channels
channels:
- defaults
(base) C:\Users\dehen>
這時(shí)候再運(yùn)行conda config --show channels會發(fā)現(xiàn)清華源已經(jīng)被刪除了
3 添加可用的清華源
參考[4],我發(fā)現(xiàn)自己之前安裝的清華源的地址https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ 是清華維護(hù)的conda三方源之一conda-forge的鏡像,,,此外清華還有很多可用的源。
所以我根據(jù)官網(wǎng)指示進(jìn)行了添加:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda config --set show_channel_urls yes的意思是從channel中安裝包時(shí)顯示channel的url,這樣就可以知道包的安裝來源了。
4 下載opencv
在添加好這個(gè)源(channel)之后,我重新運(yùn)行conda install opencv,果然能夠成功下載?。?!
但是中間竟然是自動(dòng)安裝,在安裝前的確認(rèn)[Y/N]的時(shí)候,conda直接跳過了,默認(rèn)是Y。。。
這讓我非常難受,所以我運(yùn)行了:
conda config --set always_yes false
(這里的意思是安裝確認(rèn)中,不默認(rèn)yes,而是由我來決定)
5 一些其他的conda指令
conda install 包名> 安裝指定包
conda remove 包名> 移除指定包
conda update 包名> 更新指定包
參考文獻(xiàn)
[1]Annaconda 增加刪除鏡像 channel, 以及其他python包安裝解決辦法
最開始是看到這里的評論,發(fā)現(xiàn)清華的源用不了。
[2] conda常用命令詳解
在這里學(xué)到了一些conda的命令
[3] [加速]為conda添加國內(nèi)鏡像
在這里發(fā)現(xiàn)原來我之前添加的清華源,和真正的清華源不一樣,這促使我進(jìn)一步尋找可用的清華源。
[4] Anaconda 鏡像使用幫助
這里是清華源的官網(wǎng),我找到了可用的清華源并進(jìn)行了安裝。
到此這篇關(guān)于conda使用清華源設(shè)置channel的鏡像 的文章就介紹到這了,更多相關(guān)conda channel鏡像內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- pip/anaconda修改鏡像源,加快python模塊安裝速度的操作
- 在Anaconda3下使用清華鏡像源安裝TensorFlow(CPU版)