RVM Prerequisites
Most of the requirements bellow are met by standard Linux distributions, make sure to check following command after installing rvm:
rvm requirements
RVM uses the following standard GNU tools (some are built into bash):
- bash (>= 3.2)
- awk
- sed
- grep
- which
- ls
- cp
- tar
- curl
- gunzip
- bunzip2
RVM also requires the following libraries (for installing '-head' rubies).
- git
- subversion
If you want to use RVM in Zsh, you will also needs version: 4.3.5 <= zsh <= 4.3.12.
NOTE: For a quick and dirty way to find out if you have these programs and where they are, copy and paste the following code into your shell. This works in both Zsh and Bash so you can copy and paste with no worries.
for name in {bash,awk,sed,grep,ls,cp,tar,curl,gunzip,bunzip2,git,svn} ; do which $name ; done