uWSGI can not load libssl.1.0.0.dylib

后端 未结 3 780
耶瑟儿~
耶瑟儿~ 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:58

    my error specifically for Mac OSx, was..

    user-MacBook-Pro:src user$ uwsgi --enable-threads --ini deploy.ini
    dyld: Library not loaded: /opt/local/lib/libssl.1.0.0.dylib
      Referenced from: /usr/local/bin/uwsgi
      Reason: image not found
    Abort trap: 6
    user-MacBook-Pro:src user$ 
    

    this suddenly started happening, either after upgrading Mac OSx to v10.14.6 or after an extensive installation process playing around with aircrack-ng (i'm not sure which)

    but, the following fixed my issue... (help from https://stackoverflow.com/a/59055043/2298002)

    $ brew update
    $ brew upgrade
    $ brew install openssl # yielded 'already installed'
    $ brew reinstall uwsgi # yielded 'could not symlink' error
    $ brew link --overwrite uwsgi
    

    NOTE: uwsgi now works fine, but i still cannot run $ man uwsgi, yields...

    user-MacBook-Pro:src user$ man uwsgi
    No manual entry for uwsgi
    user-MacBook-Pro:src user$
    

    ... anyone have any incites to this?

提交回复
热议问题