user1183194
user1183194

Reputation: 137

Unable to install rvm on mac OSX 10.8.2

Error running 'make', please read /Users/Megha/.rvm/log/ruby-1.9.3-p374/make.log There has been an error while running make. Halting the installation.

Upvotes: 1

Views: 592

Answers (2)

Ian Connor
Ian Connor

Reputation: 76

You need the command lines tools (install xcode via the app store - then open it to install the command lines tools). I am talking 1Gb+ so it will take some time.

After that, get brew:

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

Update and run brew to install gcc:

brew update
brew tap homebrew/dupes
brew install apple-gcc42

Then RVM and ruby 1.9.3 should work:

curl -L https://get.rvm.io | bash -s stable --rails
rvm install 1.9.3

Upvotes: 0

mpapis
mpapis

Reputation: 53178

There is a new experimental way of dealing with dependencies in RVM => https://github.com/wayneeseguin/rvm/pull/1544 :

rvm get branch /features/improved_dependencies
rvm pkg remove
rvm remove 1.9.3
rvm install 1.9.3

Upvotes: 0

Related Questions