ruby-eth: Can not use this gem on new rails project on Mac OS Catalina
Hi there,
After I added this gem to a fresh new rails project on Mac OS Catalina, I can not run rails c nor rake db:create anymore. The app either hang or crash without any error:
$ rake db:create
[1] 56641 abort rake db:create
Removing the gem or using older version of Mac OS solve the problem ๐ฆ
There might be a problem with default zsh instead of bash on Mac OS Catalina, or a problem with openssl versions?
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Reactions: 10
- Comments: 22
@fero46 thank you.
Using your suggestion I ended up with the following:
ln -s /usr/local/opt/openssl/lib/libssl.dylib /usr/local/lib/ln -s /usr/local/opt/openssl/lib/libcrypto.dylib /usr/local/lib/And that seemed to work for me
Maybe this is useful to someone (It works on MacBook Air M1)
So after a long research, I think I solved the problem. For some reason linking without versioning is not possible anymore:
Steps to fix:
Hope I could help you.
0.4.18 ๐
The above solution does fix the problem, thank you.
@fero46 I see you already fixed it once, but if you could edit two more things, which might throw off people less familiar with unix stuff:
/usr/localnotusr/localin point 2 (just a typo) and it could use a point โ3.5 cd to /usr/local/libโ so itโs clear the links should be made there.