Skip to content

Instantly share code, notes, and snippets.

@CharlieYe0205
Last active December 30, 2023 20:18
Show Gist options
  • Save CharlieYe0205/3208d4b0c7e9d5ef3b151eecde295518 to your computer and use it in GitHub Desktop.
Save CharlieYe0205/3208d4b0c7e9d5ef3b151eecde295518 to your computer and use it in GitHub Desktop.
RVM Install Openssl Fail
rvm pkg install openssl
Requirements installation successful.
Fetching openssl-1.0.1i.tar.gz to /Users/user/.rvm/archives
Extracting openssl to /Users/user/.rvm/src/openssl-1.0.1i.....
Configuring openssl in /Users/user/.rvm/src/openssl-1.0.1i....................
Compiling openssl in /Users/user/.rvm/src/openssl-1.0.1i......................
Installing openssl to /Users/user/.rvm/usr....................................
Error running '__rvm_make install',
please read /Users/user/.rvm/log/1560829183/openssl_make.install.log

/bin/sh: /Users/user/.rvm/usr/ssl/man/man3/hmac.3: Too many levels of symbolic links

All you need is to exec this

rm -rf /usr/local/ssl/man;

After this run the install command again.

Happy Coding ^_^
@Asim313
Copy link

Asim313 commented Oct 11, 2023

That worked for me 👍

@Mario-e777
Copy link

it might work to run rm -rf ~/.rvm/usr/ssl/man

❤️‍🔥

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment