2.2.4.2. Installing Required Software
Before installing the OpenShift Enterprise client tools on OpenSUSE, 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 zypper install ruby
$ sudo zypper install ruby
Run the following command to verify that
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
Ruby has installed correctly:
ruby -e 'puts "Welcome to Ruby"' Welcome to Ruby
$ ruby -e 'puts "Welcome to Ruby"'
Welcome to Ruby
Installing RubyGems
Run the following command to install RubyGems:
sudo zypper install rubygems
$ sudo zypper install rubygems
Installing Git
Run the following command to install Git version control:
sudo zypper install git-core
$ sudo zypper install git-core
After installation completes, run the following command to verify that
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
where the version number returned will be the version that was installed.
Git has installed correctly:
git --version git version 1.7.11.1
$ git --version
git version 1.7.11.1