您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何將Manjaro、pip、conda更換為國內源,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
Manjaro
切換鏡像源。執行以下命令,在稍后的彈窗中選擇延遲最低的即可。
sudo pacman-mirrors -i -c China -m rank
設置archlinuxcn源。在/etc/pacman.conf中添加以下命令,中科大源和清華源添加其中一個就可以了:
[archlinuxcn] SigLevel = Optional TrustedOnly #中科大源 Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch #清華源 Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
更新源列表:
sudo pacman-mirrors -g
更新pacman數據庫并更新系統:
sudo pacman -Syyu
更新系統簽名:
sudo pacman -S archlinuxcn-keyring sudo pacman -S antergos-keyring
pip
如果只是想臨時從指定源下載某個文件,可以在下載命令后加入-i url來指定下載源,其中url是鏡像源的地址。例如:
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
永久更換。以添加阿里云的源為例:
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
其中的https://mirrors.aliyun.com/pypi/simple/可以換成其他的鏡像源地址。一些常見的源地址如下:
阿里云 https://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
恢復到默認的源。步驟2的命令執行后,配置在~/.pip/pip.conf中。想要換回默認源,只要把文件中相應的部分刪掉舊可以了。(實在不行就把文件也刪除)
conda
以添加中科大源和清華源為例,以下兩個添加一個即可:
中科大源。在終端中執行以下命令:
#USTC倉庫鏡像 conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ #Conda 附加庫 conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/ #使之生效 conda config --set show_channel_urls yes
清華源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ conda config --set show_channel_urls yes
換回默認源:
conda config --remove-key channels
上述就是小編為大家分享的如何將Manjaro、pip、conda更換為國內源了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。