Created
January 25, 2017 05:54
-
-
Save bitaxis/c6e849fb031154590551dacdf4b04e38 to your computer and use it in GitHub Desktop.
Hack to allow rvm install to work again on Yosemite 10.10.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd /opt/local/share/curl | |
$ sudo wget https://curl.haxx.se/ca/cacert.pem | |
$ sudo mv curl-ca-bundle.crt curl-ca-bundle.crt-original | |
$ sudo mv cacert.pem curl-ca-bundle.crt | |
$ rvm remove 2.4.0 | |
$ rvm install 2.4.0 # some time later... | |
$ rvm use 2.4.0 | |
$ ruby --version | |
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-darwin14] | |
$ rvm gemset list | |
gemsets for ruby-2.4.0 (found in /Users/nb/.rvm/gems/ruby-2.4.0) | |
=> (default) | |
global |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment