uWSGI can not load libssl.1.0.0.dylib

后端 未结 3 786
耶瑟儿~
耶瑟儿~ 2020-12-05 08:14

When I call uwsgi, it always shows the following:

dyld: Library not loaded: libssl.1.0.0.dylib
  Referenced from: /Users/xingshi/anaconda/bin/uw         


        
3条回答
  •  误落风尘
    2020-12-05 08:55

    MacPorts usually install softwares into /opt/local/, but brew will install softwares into /usr/local/. It seems that my uwsgi is looking for the libssl.1.0.0.dylib in /usr/local/lib, so I use brew to install openssl and relink it:

    brew install --upgrade openssl
    brew unlink openssl && brew link openssl --force
    

提交回复
热议问题