Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.05 KB

install-ruby.md

File metadata and controls

51 lines (39 loc) · 1.05 KB

Ruby & Bundler installation

Jump to:

Installing Ruby

Installing Bundler

Ruby Installation

For more info besides these very basic steps visit https://www.ruby-lang.org/en/downloads/

Windows

  1. Visit https://rubyinstaller.org
  2. Click the big red Download button
  3. Click the top most button (e.g Ruby+Devkit 3.2.2-1 (x64))
  4. Open the downloaded file and run it

Linux

I am going to assume you are using Ubuntu

  1. Run
sudo apt update
  1. Install Ruby
sudo apt install ruby-full
  1. Ruby Should be installed!

Bundler Installation

For more info besides these very basic steps visit https://bundler.io

Requirements:

  • You must have Ruby 3.0 or above installed

Windows

  1. Open Powershell not Command Prompt this is extremely important
  2. Inside powershell simply run
gem install bundler 

Linux

Once again, I am going to assume you are using Ubuntu

  1. Open a terminal
  2. Run:
gem install bundler