Created
December 19, 2011 11:24
-
-
Save Irio/1496746 to your computer and use it in GitHub Desktop.
Solution for "cannot load such file -- openssl" on RVM
This file contains 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
When I tried run "rake test", I received: | |
rake aborted! | |
cannot load such file -- openssl | |
Tasks: TOP => test:units => test:prepare => db:test:prepare => db:abort_if_pending_migrations => environment | |
(See full trace by running task with --trace) | |
Solution: | |
$ rvm pkg install openssl | |
$ rvm remove 1.9.3 | |
$ rvm install 1.9.3 --with-openssl-dir=$rvm_path/usr |
Thanks! Awesome!
It Works!!
Great! Command for WSL with rvm
rvm install 2.7.8 --with-openssl-dir=/usr/share/rvm/usr
Nice! I understand now.
Great! Command for WSL with rvm
rvm install 2.7.8 --with-openssl-dir=/usr/share/rvm/usr
thank you
so much !! it works
Great! Command for WSL with rvm
rvm install 2.7.8 --with-openssl-dir=/usr/share/rvm/usr
This worked! I searched a lot until found this. Thank you very much.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!