Python crashing on MacOS 10.15 Beta (19A582a) with “/usr/lib/libcrypto.dylib”

前端 未结 13 594
星月不相逢
星月不相逢 2020-12-12 15:47

I ran my Django project with new macOS Catalina and was running fine.
I installed oh_my_zsh then I tried to run the same project it is crashing with the following errors

13条回答
  •  悲哀的现实
    2020-12-12 16:17

    For me it was enough to re-install Python's cryptography package.

    pip uninstall cryptography
    pip install cryptography
    

提交回复
热议问题