2.2.3.2. Installing Required Software
Before installing the OpenShift Enterprise client tools on Ubuntu or other Debian distributions, you must download and install the following software:
Ruby
: interpreted object-oriented scripting language.RubyGems
: Ruby standard for publishing and managing third party libraries.Git
: software version control system.
Installing Ruby
From terminal, run the following command to install Ruby
:
$ sudo apt-get install ruby-full
Run the following command to verify that
Ruby
has installed correctly:
$ ruby -e 'puts "Welcome to Ruby"'
Welcome to Ruby
Installing RubyGems
Run the following command to install RubyGems
:
$ sudo apt-get install rubygems
Installing Git
Run the following command to install Git
version control:
$ sudo apt-get install git-core
After installation completes, run the following command to verify that
Git
has installed correctly:
$ git --version
git version 1.7.11.1
where the version number returned is the version that was installed.