Skip to content

Instantly share code, notes, and snippets.

@stevepentler
Last active October 6, 2016 19:35
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 stevepentler/0902ebae9547ad9cbfc3eb36a193968c to your computer and use it in GitHub Desktop.
Save stevepentler/0902ebae9547ad9cbfc3eb36a193968c to your computer and use it in GitHub Desktop.
install RVM
Fiddle with your .bash_profile (I can send you what you need if you don’t already have it)
run the following stuff in order:
rvm requirements
rvm pkg install readline
rvm pkg install iconv
rvm pkg install zlib
rvm pkg install openssl
rvm pkg install autoconf
rvm pkg install curl
rvm pkg install gettext
rvm pkg install glib
rvm pkg install libxml2
rvm pkg install libxslt
rvm pkg install libyaml
rvm pkg install llvm
rvm pkg install mono
rvm pkg install ncurses
rvm pkg install pkgconfig
and finally
rvm install 2.3.1
rvm package install is deprecated but it ensures you have those libraries installed on your machine (not all gems require them, which is why they are optional and not installed by default)
if you ever install a package, you’ll need to re-install ruby through rvm to allow it to use it
rvm reinstall 2.3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment