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
Copy to Clipboard Toggle word wrap

Run the following command to verify that Ruby has installed correctly:
$ ruby -e 'puts "Welcome to Ruby"'
Welcome to Ruby
Copy to Clipboard Toggle word wrap
Installing RubyGems

Run the following command to install RubyGems:

$ sudo zypper install rubygems
Copy to Clipboard Toggle word wrap

Installing Git

Run the following command to install Git version control:

$ sudo zypper install git-core
Copy to Clipboard Toggle word wrap

After installation completes, run the following command to verify that Git has installed correctly:
$ git --version
git version 1.7.11.1
Copy to Clipboard Toggle word wrap
where the version number returned will be the version that was installed.
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2026 Red Hat
Back to top