The fastest and easiest way to install Ruby on a Mac in 2024
Excerpt
The most complete and up-to-date step-by-step article for properly setting up Ruby on a Mac in 2024. Stop struggling with Ruby!
Install Ruby on your Mac with a single command
Have you been struggling for the past few hours, or even days, trying to get your Rails, Jekyll, iOS, Flutter, React Native, or other Ruby project working? Have you been getting error after error when installing Ruby gems, or even just Ruby itself? I have good news for you!
Your Ruby troubles end today.
Over the past twelve years, Iâve helped hundreds of thousands of people set up Ruby on their Mac. First, with this free tutorial that Iâve kept up to date over the years, and now, with my popular Ruby on Mac product that automates the whole process for you.
If youâre the kind of person that values your time and wants something that just works, give Ruby on Mac a try. You wonât be disappointed. Join 2200+ happy customers who got unstuck right away. Read how much people love Ruby on Mac.
Your Options
-
Use Ruby on Mac to install everything you need in 15 minutes with one command. Going forward, youâll have peace of mind that youâll always have a working Ruby setup. Youâll never have to waste time again dealing with Ruby installation issues, and youâll save hours each time you set up a new Mac.
-
Spend an hour or more reading through this guide and doing everything manually.
Start here if you choose the long and manual route
Most of the work youâll be doing in this tutorial will be in the âTerminalâ application. The easiest way to open an application in macOS is to search for it via Spotlight.
The default keyboard shortcut for invoking Spotlight is â-Space
. Once Spotlight is up, start typing the first few letters of the app you are looking for, and once it appears, select it, and press return
to launch it.
Table of Contents
- Prerequisites
- Make sure your computer is plugged in and has a stable internet connection
- If youâre on Ventura or higher
- If youâre on Monterey or earlier
- Make sure your macOS software is up to date
- Make sure Homebrew is ready to brew
- Make sure you donât have RVM, rbenv, asdf, or frum installed
- Check if you have other Ruby managers
- Make sure your macOS username and home folder donât have spaces in the name
- Make sure you have enough free disk space
- Installation
- Step 1: Install Homebrew and the Command Line Tools
- Step 2: Install chruby and the latest Ruby with ruby-install
- Step 3: Install a gem
- How to install different versions of Ruby and switch between them
- Recommended way to automatically switch to the correct version
- Important note about projects with older Ruby versions
- Issues with existing projects
- Note about gems across different Ruby versions
- Next Steps
Prerequisites
Supported macOS versions:
- Sonoma (macOS 14)
- Ventura (macOS 13)
- Monterey (macOS 12)
Older macOS versions might still work, but I canât guarantee it.
Make sure your computer is plugged in and has a stable internet connection
Once youâve followed the instructions in this guide to clean up and prepare your Mac, it can take 15 or more minutes to install everything, so if you plan on doing something else while the various tools are installing, temporarily prevent your Mac from sleeping until the installation is done.
Make sure youâre not using a VPN, or a slow shared public WiFi. If you have a mobile hotspot your computer can join, it might be a better option than a public WiFi. You can compare the speeds with a service like fast.com.
Also, make sure you can access this page: https://raw.githubusercontent.com/postmodern/ruby-versions/master/ruby/versions.txt
Some internet and mobile service providers, like ACT in India, are known to block access to certain domains, like the one above from GitHub.
Ruby on Mac uses a workaround to ensure Ruby can be installed even if your ISP is blocking that GitHub domain.
If youâre on Ventura or higher
- Click on the Apple icon at the top left of your Mac, and click on System Settings.
- Click on âDisplaysâ in the left sidebar
- Make the window larger by dragging its bottom edge until you see the âAdvancedâ button on the right side
- Click on the âAdvancedâ button on the right
- In the âBattery & Energyâ section at the bottom (you might have to scroll down to see it), make sure to turn on âPrevent automatic sleeping on power adapter when the display is offâ
- Click âDoneâ
If youâre on Monterey or earlier
- Click on the Apple icon at the top left of your Mac, and click on System Preferences.
- Click on âBatteryâ
- Click on âPower Adapterâ on the left
- Turn on the option to âPrevent your Mac from automatically sleeping when the display is offâ.
Make sure your macOS software is up to date
Before you start, make sure you have the latest Apple software updates for your current macOS version. Click on the Apple icon in the top left of your screen, then click on System Preferences, and then click on Software Update. If there are any updates available, install them. If you already have the latest updates for the current macOS version, you donât have to upgrade to the latest macOS.
Make sure Homebrew is ready to brew
You can skip this section if you know you havenât tried to install Homebrew yet. If youâre not sure, check the contents of the /usr/local
folder by running this command in the Terminal
app:
If thereâs nothing in the folder, then you donât have Homebrew.
If youâre on a Mac with the Apple Silicon chip (M1/M2), youâll also need to check the /opt/homebrew
folder:
If those folders are not empty, that means Homebrew is installed, and youâll need to make sure that Homebrew is up to date and happy by running this command:
brew update && brew doctor
It should say Your system is ready to brew
at the end.
If itâs not ready to brew, then read what Homebrew has to say, and see if you can fix the issues on your own, or with the help of Homebrew Discussions. Homebrew usually gives detailed instructions for fixing issues. You can also choose to ignore the errors and warnings. In some cases, the warnings might not affect Ruby installation. The rest of the tutorial might still work, but itâs definitely not guaranteed.
If youâre on an Apple Silicon Mac, and your /usr/local
folder is not empty, that means you installed Homebrew with Rosetta, or with arch -x86_64
in the terminal, or you transferred your files from an Intel Mac to your Apple Silicon Mac. Regardless of how this happened, it can cause all kinds of issues, and you might run into errors while following this guide, or while installing gems or running bundle install
or pod install
in your projects.
With Ruby on Mac, you donât have to worry about fixing Homebrew errors because it automatically detects and fixes common issues when it can. And if they canât be easily fixed, Ruby on Mac comes with a âresetâ mode that will back up then safely clean up your dev environment in 1 minute. Then you can run it in ânormalâ mode to reinstall everything from scratch in about 15 minutes.
Make sure you donât have RVM, rbenv, asdf, or frum installed
Of all the Ruby managers, I recommend chruby because itâs the simplest, and one of the fastest at switching between Rubies. Ruby managers are not compatible with one another, so if you have RVM, rbenv, asdf, or frum, I recommend uninstalling them.
Ruby on Mac Prime will automatically uninstall these other version managers for you if it finds them. With Ruby on Mac Ultimate, itâs even better: you can choose your preferred manager, and update your preference at any time.
Check if you have other Ruby managers
Run these commands in your terminal:
If those commands return any info, then you have that tool installed. Look up the uninstallation instructions for each tool on their website/GitHub repo.
If it says âcommand not foundâ, then you most likely donât have it installed. However, itâs possible that itâs still installed, but just not in your PATH
. If youâre not familiar with the term PATH
, I recommend reading my guide about PATH
to learn about it. It will teach you to troubleshoot dev setup issues more confidently.
Make sure your macOS username and home folder donât have spaces in the name
In normal conditions, Apple wonât let you create a macOS username with a space in the name, but Iâve seen it happen in some rare scenarios. Having a space in the Home folder name can cause all kinds of issues in general. To fix this, follow these instructions from Apple very carefully.
Make sure you have enough free disk space
Appleâs standalone Xcode command line tools take up about 5GB of disk space, but the installer might require more than that to be free on your hard drive, probably around 15GB. And in general, itâs best to leave about 10% of your total hard drive size available.
Installation
Read this part only if you are on an Apple Silicon Mac (M1/M2)
If youâre on an Apple Silicon Mac, make sure Terminal is NOT in Rosetta mode.
You can check by running this command once Terminal opens:
It should say arm64
if youâre on an Apple Silicon Mac. If it says x86_64
, that means Terminal (or whatever terminal app youâre using, such as iTerm) is in Rosetta mode. Hereâs how to turn it off:
- Quit Terminal/iTerm (or whatever terminal app youâre using) if itâs running
- Go to the Finder
- Look for your terminal app. For the Apple Terminal app, go to the Utilities folder by pressing
shift-command-U
(or select âGoâ from the menu bar, then select Utilities) - Click once on the Terminal app to select it, but donât launch it.
- Press the
â-i
keyboard shortcut to open the Info window (or from the menu bar: âFileâ, then âGet Infoâ). - Uncheck the checkbox that says âOpen using Rosettaâ
- Close the Terminal Info window
- Launch Terminal/iTerm/etc
- Run
uname -m
. It should now sayarm64
and you can proceed with the rest of this guide. - Run
arch
. It should sayarm64
.
If either uname -m
or arch
fail to say arm64
, then something else is turning on Rosetta. Check the files below for any mention of arch -x86_64
, i386
, ARCHFLAGS
, or other lines that look like theyâre setting the Intel architecture. Then remove them, or comment them out.
- ~/.zshrc
- ~/.zprofile
- ~/.zlogin
- ~/.bash_profile
- ~/.profile
- ~/.bashrc
- ~/.config/fish/config.fish
Then quit and restart your terminal app and check uname -m
.
If it still says âx86_64â, then youâll need to completely clean up your dev environment and start over from scratch. A complete cleanup involves about 60 steps that would take an hour to do manually. Or several hours if you were to erase your hard drive and reinstall macOS. Ruby on Mac can safely back up and clean up your dev setup in 1 minute.
Notes on your shell
This tutorial assumes youâre using zsh
. If youâre not sure, read my guide to find out which shell youâre using, and replace any references to .zshrc
in the steps below with .bash_profile
if youâre using Bash.
All versions of Ruby on Mac automatically detect which shell youâre using and configure it appropriately.
Homebrew, âthe missing package manager for macOS,â allows you to easily install hundreds of open-source tools. The full installation instructions are available in the Homebrew Documentation, but you should only need to run the command thatâs listed at the top of the Homebrew site:
/bin/bash <span>-c</span> <span>"</span><span>$(</span>curl <span>-fsSL</span> https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh<span>)</span><span>"</span>
Note that the command listed on the Homebrew site could change, so please make sure that what I have listed above is the same. If it isnât, please let me know and Iâll update it.
Copy and paste the command into your Terminal window, press return
, then read what appears in the Terminal, and pay attention to any instructions that require your input. For example, Homebrew will prompt for your macOS password. Note that Terminal does not provide visual feedback when you type your password. Just type it slowly and press return.
Homebrew also automatically installs the Apple Command Line Tools, and it usually installs them in the background, but in case this changes, pay attention if any windows appear that require your input.
Once the installation is successful, quit and restart Terminal, then check if Homebrew is ready to go:
If you get Your system is ready to brew
, you can move on to Step 2. Otherwise, read what Homebrew is saying very carefully. They usually provide great instructions that you should follow.
On Apple Silicon Macs, Homebrew might tell you to run a few commands after the installation, such as:
<span>echo</span> <span>"eval </span><span>$(</span>/opt/homebrew/bin/brew shellenv<span>)</span><span>"</span> <span>>></span> ~/.zprofile
<span>eval</span> <span>$(</span>/opt/homebrew/bin/brew shellenv<span>)</span>
Make sure to run those commands.
Quit and restart Terminal, then check if everything is working so far:
Step 2: Install chruby and the latest Ruby with ruby-install
Install chruby
and ruby-install
:
brew <span>install </span>chruby ruby-install
Then install the latest Ruby (currently 3.3.4):
Itâs important to make sure you can install the latest Ruby before trying to install other Ruby versions.
This will take a few minutes. If it succeeds, go to the next step to configure your shell to automatically use chruby
.
If it fails with !!! Compiling Ruby 3.3.4 failed!
, or !!! Installation of ruby 3.3.4 failed!
, or !!! Configuration of ruby 3.3.4 failed!
, or any other error, then thereâs most likely something wrong with your development setup.
What to do if Ruby installation fails
The latest Ruby is guaranteed to work when you have a clean development setup. If the latest Ruby fails to install, then you most likely have something in your system thatâs interfering with the Ruby installation.
Unfortunately, there are many factors that can affect Ruby installation on Mac, such as:
- Xcode/Command Line Tools version
- macOS version
- Intel vs Apple Silicon
- Installing things with and without Rosetta at the same time
- Transferring files from an Intel Mac to an Apple Silicon Mac
- The desired Ruby version
- The current active Ruby version
- How you installed Ruby and/or gems, and which tool you used
- Missing, misconfigured, and outdated dev tools
- Incompatible tools installed at the same time
If youâre installing the latest Ruby, the only solution that is guaranteed to work in all cases is to clean up your dev setup and start over from scratch. This can involve 60 or more steps that can take 60 minutes to complete, so itâs beyond the scope of this tutorial.
Itâs definitely possible that thereâs a quicker solution, but it would depend on your specific situation. Thatâs why you might see online people saying that a particular solution worked for them, but someone else is saying nothing so far has worked for them. Also, most of the âsolutionsâ are hacks and workarounds that could lead to other issues.
Thatâs why I built Ruby on Mac. Itâs guaranteed to get you back on track without any hacks. It has a âresetâ mode that will safely back up, then clean up your development setup in 1 minute, and then you can reinstall everything from scratch in 15 minutes or less in ânormalâ mode.
If youâre trying to install an older Ruby version, then it might fail even if you have a clean setup because some older versions require different settings and tools depending on the Ruby version, your Mac model, macOS version, and/or Xcode/Command Line Tools version. For more details, read the section below about installing other Ruby versions.
Save yourself the headache and your precious time and let Ruby on Mac do all the complicated work for you.
Iâve helped hundreds of thousands of people set up Ruby on their Mac over the past twelve years. First, with this article that Iâve kept up to date, and now with Ruby on Mac. Over 2200 happy customers have saved time and frustration since I released it in February 2022, and will continue to have peace of mind for years to come.
Over the years, Iâve heard the same story over and over: people end up wasting hours of their time, and banging their head against a wall, wishing they had found this article and Ruby on Mac earlier. Read how much people love Ruby on Mac.
Configure your shell
<span>echo</span> <span>"source </span><span>$(</span>brew <span>--prefix</span><span>)</span><span>/opt/chruby/share/chruby/chruby.sh"</span> <span>>></span> ~/.zshrc
<span>echo</span> <span>"source </span><span>$(</span>brew <span>--prefix</span><span>)</span><span>/opt/chruby/share/chruby/auto.sh"</span> <span>>></span> ~/.zshrc
<span>echo</span> <span>"chruby ruby-3.3.4"</span> <span>>></span> ~/.zshrc
Note that 3.3.4
in the commands above assumes 3.3.4
is the version that was installed at the beginning of Step 2.
Quit and relaunch Terminal, then check that everything is working:
It should match the version you installed in step 2.
Step 3: Install a gem
Congrats! You now have a working Ruby development environment. You should now be able to install Rails, Jekyll, cocoapods, fastlane, bundler, compass, or whatever gem youâve been trying to install for the past few days or months!
Just make sure you donât use sudo to install any gems!
Now that you have a proper Ruby development environment, you can safely install gems with gem install
followed by the name of the gem.
Note that some gems are not compatible with Apple Silicon (M1/M2). I recommend replacing them with more modern alternatives, or asking the maintainers if theyâre willing to update them. Here are a couple of examples:
- therubyracer (read How to Install (Or Get Rid Of) therubyracer on M1 or M2 Macs)
- grpc (this fix should be coming soon)
Next, make sure to read the rest of this guide. It will save you a lot of confusion and headaches.
How to install different versions of Ruby and switch between them
To install an additional version, run ruby-install
followed by the desired version. But first, you need to check which version of the Apple Command Line Tools (CLT) or Xcode you have:
Look for the lines at the bottom that start with CLT:
and Xcode:
. If either one of them starts with 14
or higher, and youâre trying to install a version older than 3.1.3, 3.0.5, or 2.7.7 (but not 2.6.x or older), then youâll need to install Ruby like this:
ruby-install 3.1.2 <span>--</span> <span>--enable-shared</span>
Otherwise, if you have CLT/Xcode version less than 14, install Ruby normally without any extra options:
If this sounds complicated, and you donât want to remember which command to use depending on which Ruby version you want to install, or what kind of Mac you have, you can buy Ruby on Mac Ultimate. It automatically figures out the right settings to use, and all you have to do is run rom install ruby 2.7.8
for example. And if youâre trying to install Ruby 2.6.x on your Mac, or even older Ruby versions on Mac, Ruby on Mac Ultimate will likely be your best option.
To switch to this newly-installed version, quit and restart your terminal, then run chruby
followed by the version. For example:
chruby
is different from other Ruby version managers in that you canât set a âglobalâ Ruby version thatâs automatically available everywhere. If you followed this guide, every time you open a new Terminal window or tab, chruby
will switch to Ruby 3.3.4, or the version that appears last in your shell file. Then you should be able to install gems globally within that specific Ruby version with gem install name_of_gem
.
However, if you then cd
into a different directory that either doesnât have a .ruby-version
file, or if the .ruby-version
file is set to a Ruby version that chruby
doesnât know about, chruby
will revert to the system Ruby (the one that came with your Mac), which is 2.6.10 on the latest Monterey and higher (Ventura, Sonoma).
You definitely never want to be using the system Ruby! Here are 5 reasons why you shouldnât use the system Ruby.
You can check by running which ruby
. It if says /usr/bin/ruby
, thatâs the system Ruby, and you donât want that. If you get errors while trying to install a gem, or running bundle install
, the first thing you should check is that youâre using the right version of Ruby.
Thatâs why I recommend that all Ruby projects have a .ruby-version
file that specifies one of the versions that chruby knows about. That way, when you cd
into the project, chruby
will automatically detect the .ruby-version
file and switch to the version defined in the file.
Read the section below to learn how to set up and use the .ruby-version
file.
Recommended way to automatically switch to the correct version
A highly-recommended way to automatically switch between versions is to add a .ruby-version
file in your Ruby project with the desired version number, such as 3.2.5
. To test that this works:
-
Create a test folder and
cd
into it:cd ~ mkdir testing-chruby cd testing-chruby
-
Create a file called
.ruby-version
with3.2.5
in it:<span>echo</span> <span>'3.2.5'</span> <span>>></span> .ruby-version
This assumes that you already have 3.2.5 installed. If not, either install it, or replace
3.2.5
with a version you already have. You can check which versions are installed by runningchruby
. -
cd
into a folder outside of your project, such as your home folder:cd ~
-
Run
ruby -v
. It will probably say2.6.10
(or older), which is the Ruby that came preinstalled on macOS. -
cd -
to go back to your project. The-
is a shortcut to go back to the previous directory in the terminal. -
Verify that
ruby -v
shows3.2.5
-
Delete the test folder:
cd ~ rm -rf testing-chruby
For projects that have a Gemfile
, itâs a good idea to specify the Ruby version in your Gemfile
, and because it must match the one in the .ruby-version
file, you can make that easy by telling the Gemfile to grab the version from the .ruby-version
file, by putting this line in your Gemfile, right before the first gem:
<span>ruby</span> <span>File</span><span>.</span><span>read</span><span>(</span><span>".ruby-version"</span><span>).</span><span>strip</span>
Hereâs an example of what the first few lines of a Gemfile might look like:
<span>source</span> <span>"https://rubygems.org"</span>
<span>git_source</span><span>(</span><span>:github</span><span>)</span> <span>{</span> <span>|</span><span>repo</span><span>|</span> <span>"https://github.com/</span><span>#{</span><span>repo</span><span>}</span><span>.git"</span> <span>}</span>
<span>ruby</span> <span>File</span><span>.</span><span>read</span><span>(</span><span>".ruby-version"</span><span>).</span><span>strip</span>
<span>gem</span> <span>"rails"</span><span>,</span> <span>"~> 7.0.4"</span>
Important note about projects with older Ruby versions
If youâre trying to work with an existing Ruby project that has a Gemfile
and/or a .ruby-version
file that specified a version older than 3.3.4, 3.2.5, 3.1.6, 3.0.7, or 2.7.8, youâll need to either update your app to use a more recent version (best solution), or install the older version specified in your project (not recommended).
This is a very important concept to understand when working with Ruby, and many people waste time trying to install older versions of Ruby when the correct solution is to update the project instead.
For example, itâs not possible to install Ruby 2.7.0 or 2.7.1 on an Apple Silicon Mac (unless you use Rosetta, which I do not recommend). Instead, you should update your project to at least 2.7.8, and then to 3.1.6 because Ruby 2.7 reached end of life in March 2023. Follow the step-by-step instructions in my article that explains how and why to upgrade the Ruby version in your project.
Issues with existing projects
Now that you have a proper Ruby development environment, it wonât necessarily fix issues that are specific to your project. For example, if youâve been getting errors after running bundle install
in an old Ruby project, or when trying to run a Jekyll site with bundle exec jekyll serve
, or a Rails app with bin/rails s
, those errors could be because the gems and/or Ruby version in your project are outdated.
In the next two sections, Iâll go over how to tell if the issue is specific to your project, and troubleshooting tips.
How to tell if the issue is specific to your project
Check if you can create and run a brand new Rails app, and/or check if you can create and run a brand new Jekyll site.
If youâre able to generate and run a brand new Rails or Jekyll project using the instructions in the links above, then that means you have a working Ruby dev setup, and the issues youâre seeing in your existing project are specific to that project. Read the next section for tips on fixing the issues.
If youâre not able to generate and run a brand new Rails or Jekyll project, then that means something is wrong with your Ruby setup, and youâll need to start over at the beginning of this tutorial, or buy Ruby on Mac.
How to fix issues in existing projects
The first thing I recommend is to make sure all your gems are up to date. Outdated gems are the most common source of errors.
For example, ffi
is a common source of errors on Apple Silicon Macs (M1/M2). If you see ffi
anywhere in the error message, it most likely means youâre using a version older than 1.15.2.
In that case, try updating ffi
to the latest version:
Repeat with any other gems mentioned in error messages.
You might also find this guide helpful: How To Update Gems In Your Gemfile.
Update the Ruby version in your project
I also recommend updating your projects to at least Ruby 2.7.8, and then to 3.1.6 because 2.7.8 reached end of life in March 2023. Hereâs a detailed guide I wrote that explains how and why to upgrade the Ruby version in your project.
If you prefer personalized help getting your old Ruby projects running locally (which might involve updating gems and Ruby versions), you can book a 30-minute consultation with me over Zoom. Note that this requires a proper Ruby development environment and that you are able to install these older Ruby versions. If you donât already have that, the fastest and cheapest way forward is to buy Ruby on Mac Ultimate, which for a limited time includes a free 30-minute consultation.
Note about gems across different Ruby versions
Gems get installed separately in each version of Ruby. For example, if you installed Jekyll and/or Rails in 3.1.6, and then you install Ruby 2.7.8 later, youâll have to install them again in Ruby 2.7.8.
In the Ultimate version of Ruby on Mac, you can specify which gems you want to be installed automatically whenever you install an additional Ruby version. Itâs as simple as adding the name of each gem in a text file called .default-gems
.
Whenever installing gems in any version of Ruby, make sure to use gem install
followed by the name of the gem. Please never use sudo to install gems.
Next Steps
You now have the bare minimum needed to install gems on a Mac, but you might need other tools to work with Jekyll or Rails, such as Postgres, Node, Redis, and Yarn. Ruby on Mac installs and configures everything you need to get started right away.
Ruby on Mac can also keep your development environment up to date by simply typing rom
. Packages get updated regularly with new features and security fixes, so itâs important to be able to update all tools easily at once.