溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

conda如何使用清華源

發(fā)布時(shí)間:2022-02-25 15:00:27 來(lái)源:億速云 閱讀:1062 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)conda如何使用清華源的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

前言

在下載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:Usersdehen>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:Usersdehen>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: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>

這時(shí)候再運(yùn)行conda config --show channels會(huì)發(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,這樣就可以知道包的安裝來(lái)源了。

4 下載opencv

在添加好這個(gè)源(channel)之后,我重新運(yùn)行conda install opencv,果然能夠成功下載!?。?/p>

但是中間竟然是自動(dòng)安裝,在安裝前的確認(rèn)[Y/N]的時(shí)候,conda直接跳過(guò)了,默認(rèn)是Y。。。

這讓我非常難受,所以我運(yùn)行了:

conda config --set always_yes false

(這里的意思是安裝確認(rèn)中,不默認(rèn)yes,而是由我來(lái)決定)

5 一些其他的conda指令

conda install <包名> 安裝指定包
conda remove <包名> 移除指定包
conda update <包名> 更新指定包

感謝各位的閱讀!關(guān)于“conda如何使用清華源”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI