您好,登錄后才能下訂單哦!
本篇內容介紹了“Ubuntu下apt及pip使用國內源的方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
備份原文件
/etc/apt/source.list
是包管理工具 apt
記錄軟件包倉庫位置的配置文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
查看版本信息
不同 Linux 版本在下一步中配置有一點點不同,即在鏡像鏈接后首個參數不同。下面列出不同 Ubuntu 發行版的版本代號(Codename)
lsb_release -c# 12.04 precise# 14.04 trusty# 15.04 vivid# 15.10 wily# 16.04 xenial# 18.04 bionic# 20.04 focal
編輯源文件列表
編輯 source.list
,未安裝 vim
可使用 vi
,個人建議安裝 vim
,功能更強大
sudo vim /etc/apt/sources.list# 未安裝vim的解決方案#1 sudo vi /etc/apt/sources.list#2 sudo apt-get install vim# sudo vim /etc/apt/sources.list
講列表中原有配置刪除或注釋掉,換做以下內容(Ubuntu 20.04 可直接 copy,低版本只需將下列鏈接后首個參數 focal
替換為上一步中查找的 Codename)
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
更新軟件列表及軟件包
更新軟件列表及軟件包后即可,速度提升極其顯著
sudo apt-get update #更新軟件列表sudo apt-get upgrade #更新軟件包
以下參照清華鏡像站使用幫助
臨時使用
# pip3pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package # pippip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
設置為默認
# pip3# 注意更新指令前面是 pip3 后面是 pippip3 install --upgrade pip -U #更新pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple #配置# pippip install pip -U #更新pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple #配置
如果 pip 默認源的網絡連接較差,可以臨時使用清華鏡像站來升級 pip:
# pip3pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U# pippip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
“Ubuntu下apt及pip使用國內源的方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。