2021-05-12 14:32:11
CentOS 7 使用阿里雲的yum源、PIP源
在CentOS 7 使用阿里雲的yum源、PIP源過程步驟筆記。
一、yum源
1.設定aliyun的base源
# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
2.新增aliyun的EPEL源
EPEL(http://Fedoraproject.org/wiki/EPEL)是由 Fedora 社群打造,為 RHEL 及衍生發行版如 CentOS、Scientific Linux 等提供高品質軟體包的專案。裝上 EPEL後,可以像在 Fedora 上一樣,可以通過 yum install package-name,安裝更多軟體。
3.清除快取並生成新的快取
# yum clean all
# yum makecache
# yum repolist
二、PIP源
對於Python開發使用者來講,PIP安裝軟體包是家常便飯。但國外的源下載速度實在太慢,浪費時間。而且經常出現下載後安裝出錯問題。所以把PIP安裝源替換成國內映象,可以大幅提升下載速度,還可以提高安裝成功率。
- Linux下,修改 ~/.pip/pip.conf (沒有就建立一個資料夾及檔案。資料夾要加“.”,表示是隱藏資料夾)
# vim ~/.pip/pip.conf
[global]
index-url = http://mirrors.aliyun.com/pypi/simple
[install]
trusted-host=mirrors.aliyun.com
- Windows下,直接在user目錄中建立一個pip目錄,如:C:Usersxxpip,新建檔案pip.ini,內容同上。
更多YUM相關教學見以下內容:
RedHat 6.2 Linux修改yum源免費使用CentOS源 http://www.linuxidc.com/Linux/2013-07/87383.htm
RHEL7 本地yum源設定 http://www.linuxidc.com/Linux/2017-01/139140.htm
Redhat 本地yum源設定 http://www.linuxidc.com/Linux/2012-11/75127.htm
yum的組態檔說明 http://www.linuxidc.com/Linux/2013-04/83298.htm
redhat7.0設定本地yum源 http://www.linuxidc.com/Linux/2017-01/139148.htm
RedHat 6.1下安裝yum(圖文) http://www.linuxidc.com/Linux/2013-06/86535.htm
YUM 安裝及清理 http://www.linuxidc.com/Linux/2013-07/87163.htm
CentOS 6.4上搭建yum本地源 http://www.linuxidc.com/Linux/2014-07/104533.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-01/13966.htm
相關文章