您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關conda如何使用清華源的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
在下載OpenCV的時候發現清華的conda channel鏡像已經不能用了,故在此記錄:
1)如何顯示所有channel;
2)如何更換channel。
首先,conda config --show能夠顯示出所有conda的config信息。
如果我們只想看channels的信息,輸入conda config --show channels即可,如下:
(base) C:Usersdehen>conda config --show channels
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- defaults
現在我們有兩個源,一個清華鏡像,一個defauls默認下載源。
然而這個清華源已經不能用了,我在下載opencv的時候,輸入:conda install opencv,但是報錯:
(base) C:Usersdehen>conda install opencv
Solving environment: failedCondaHTTPError: 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."))
所以我打算刪除這個源。
輸入:conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
這個命令是為了移除之前conda config --show channels顯示的清華源。
(base) C:Usersdehen>conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
(base) C:Usersdehen>conda config --show channels
channels:
- defaults(base) C:Usersdehen>
這時候再運行conda config --show channels會發現清華源已經被刪除了
參考[4],我發現自己之前安裝的清華源的地址https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ 是清華維護的conda三方源之一conda-forge的鏡像,,,此外清華還有很多可用的源。
所以我根據官網指示進行了添加:
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中安裝包時顯示channel的url,這樣就可以知道包的安裝來源了。
在添加好這個源(channel)之后,我重新運行conda install opencv,果然能夠成功下載!!!
但是中間竟然是自動安裝,在安裝前的確認[Y/N]的時候,conda直接跳過了,默認是Y。。。
這讓我非常難受,所以我運行了:
conda config --set always_yes false
(這里的意思是安裝確認中,不默認yes,而是由我來決定)
conda install <包名> 安裝指定包
conda remove <包名> 移除指定包
conda update <包名> 更新指定包
感謝各位的閱讀!關于“conda如何使用清華源”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。