Created
November 6, 2020 06:28
-
-
Save prabukey/004cd64178c12174c8228ef14c4a2344 to your computer and use it in GitHub Desktop.
Install Ruby Dependency Openssl 1.0
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
| \curl -sSL https://get.rvm.io | bash | |
| On Mac : | |
| brew install openssl@1.0 | |
| rvm install ruby-1.8.7-p374 --with-openssl-dir=$(brew --prefix openssl@1.0) | |
| on Ubuntu: | |
| wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz | |
| tar -xzvf openssl-1.0.2l.tar.gz | |
| cd openssl-1.0.2l | |
| sudo ./config | |
| sudo make install | |
| sudo ln -sf /usr/local/ssl/bin/openssl `which openssl` | |
| gem update --system 1.8.25 | |
| gem install bundler:1.11.2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment