DEV Community

Tim Apple
Tim Apple

Posted on

2 1

Install Rbenv and Ruby on elementary os, quick and dirty.

I couldn't find a solid set of instructions on how to do this so I decided to write it up quick. I did find a lot of tutorials for Ubuntu, but they seemed to encounter errors on elementary OS.

This is basically a lot of copy paste. I've gone through all the steps on elementary and it works like a charm.

  1. cd
  2. git clone https://github.com/rbenv/rbenv.git ~/.rbenv
  3. git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
  4. Open your .bashrc with nano nano .bashrc
  5. make sure you type or past the following lines into the bottom of your .bashrc
esac
# rbenv
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
Enter fullscreen mode Exit fullscreen mode
  1. ctrl-o to save
  2. ctrl-x to quit
  3. source .bashrc
  4. rbenv install 2.7.1
  5. rbenv gloabal 2.7.1
  6. Verify ruby -v

From here you should be able to install Rails or any other gems you wish.

Like I said, quick and dirty. I hope this helps people so they don't have to dig around as much for instruction.

--Cheers Tim

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay