James Raitsev
James Raitsev

Reputation: 96581

Upgrading ruby installation using macports

Following

sudo port selfupdate
sudo port install ruby19

Where exactly is ruby installed on my mac?

Upvotes: 0

Views: 70

Answers (1)

user904990
user904990

Reputation:

By default macports install stuff in /opt/local.

Most likely your ruby binary is installed as /opt/local/bin/ruby19

To get rid of 19 suffix install it as:

sudo port install ruby19+nosuffix 

so this will install Ruby as /opt/local/bin/ruby

Upvotes: 2

Related Questions