Skip to content

Instantly share code, notes, and snippets.

@gtt116
Forked from boardstretcher/install_fpm.sh
Last active July 25, 2017 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtt116/9363c9102b2efbc471c5674fbab7670d to your computer and use it in GitHub Desktop.
Save gtt116/9363c9102b2efbc471c5674fbab7670d to your computer and use it in GitHub Desktop.
Install FPM on centos 6.5
# install ruby, rubygems and all requirements, then install FPM (effing package manager)
# fpm: https://github.com/jordansissel/fpm
# as root
# update system, install requirements
yum makecache
yum install ruby-devel gcc curl libyaml-devel
# get the ruby version manager and install
curl -L get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
# install ruby 1.9.3
rvm requirements
rvm install 1.9.3
rvm use 1.9.3 --default
# install rubygems
rvm rubygems current
# install effing package manager
gem install fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment