EPEL 是什么?


EPEL (Extra Packages for Enterprise Linux,企业版Linux的额外软件包) 是Fedora小组维护的一个软件仓库项目,为RHEL/CentOS提供他们默认不提供的软件包。这个源兼容RHEL及像CentOS和Scientific Linux这样的衍生版本。


我们可以很容易地通过yum命令从EPEL源上获取上万个在CentOS自带源上没有的软件。EPEL提供的软件包大多基于其对应的Fedora软件包,不会与企业版Linux发行版本的软件发生冲突或替换其文件。




在CentOS 上安装EPEL


要想安装EPEL,可以下载EPEL的rpm安装包,或者使用yum方式安装epel:

 yum install epel-release -y

安装完此步,可直接跳到第5步。



下载EPEL安装包如下:


CentOS/RHEL下的6.x和5.x版本下载页面如下:

http://download.fedoraproject.org/pub/epel/6/i386/repoview/epel-release.html

http://download.fedoraproject.org/pub/epel/5/i386/repoview/epel-release.html



以上网址可能会被重定向到特定的镜像站而加快下载速度。这个页面包含可以直接获取到rpm包的下载链接。直接的下载链接如下:

http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm



根据你的CentOS 版本来选择正确的下载地址。

请注意EPEL 的安装包是独立编译的,所以它可以安装在32位和64位系统中。




1. 确认你的CentOS 的版本


首先通过以下命令确认你的CentOS 版本

lsb_release -a


CentOS安装EPEL扩展包_centos




2. 下载EPEL 的rpm 安装包


现在从上面的地址下载CentOS 版本所对应的EPEL 的版本

wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm


CentOS安装EPEL扩展包_centos_02


CentOS安装EPEL扩展包_centos_03




3. 安装EPEL


通过以下命令安装EPEL 软件包

sudo rpm -ivh epel-release-6-8.noarch.rpm


sudo rpm -ivh epel-release*


CentOS安装EPEL扩展包_epel_04




5. 检查EPEL 源


安装好EPEL 源后,用yum 命令来检查是否添加到源列表

yum repolist


CentOS安装EPEL扩展包_centos_05




6.安装软件


EPEL已经在 repo 后列出,并且显示提供了上万个软件包,所以 EPEL 已经安装到你的 CentOS 了。

EPEL源的配置安装到了 /etc/yum.repos.d/epel.repo 文件。

现在来试一下从EPEL 获取软件包!




1) 安装 sl

yum install sl


CentOS安装EPEL扩展包_linux _06


CentOS安装EPEL扩展包_linux _07




2) 安装 ipython

yum install ipython


CentOS安装EPEL扩展包_epel_08


CentOS安装EPEL扩展包_linux _09



3) 安装 pip

yum install python-pip


CentOS安装EPEL扩展包_linux _10



4) pip 安装 web.py


pip install web.py

CentOS安装EPEL扩展包_linux _11


编辑 web.py 示例

CentOS安装EPEL扩展包_epel_12


运行 web.py 示例

CentOS安装EPEL扩展包_linux _13


访问 web 页面

CentOS安装EPEL扩展包_linux _14