首页 > 代码库 > FPM 打包工具安装

FPM 打包工具安装

修改yum源:

备份

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup


安装阿里云yum源

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo


安装依赖包

yum -y install ruby rubygems ruby-devel

添加阿里云的Rubygems 仓库 

gem sources -a http://mirrors.aliyun.com/rubygems/

#移除原生Ruby仓库
gem sources --remove http://rubygems.org/

 

检查是否已经移除

技术分享

 

指定安装版本

gem install fpm -v 1.33

 

没有v 1.3.3版本  安装了 1.4.0  只是使用来打包

技术分享

检查是否可以使用

fpm --help

技术分享

 

FPM 打包工具安装