Django: running manage.py always aborts

前端 未结 3 1999
独厮守ぢ
独厮守ぢ 2020-12-30 05:38

I have an existing Django application that I\'m trying to set up locally. After creating a virtual environment and installing all the required dependencies, running ma

相关标签:
3条回答
  • 2020-12-30 06:02

    Looks like its an issue with asn1crypto package..

    running the below command should fix the issue

    rm -rf venv/lib/python2.7/site-packages/asn1crypto
    
    0 讨论(0)
  • 2020-12-30 06:17

    I had similar problem. It is because python3.6.8 and macOS catalina are incompatible. If you upgrade python version at least 3.8, it will work.

    https://docs.python.org/3.8/whatsnew/changelog.html?highlight=catalina

    0 讨论(0)
  • 2020-12-30 06:21

    Just remove cryptography package.

    Had a similar problem and found a solution here https://github.com/jazzband/django-push-notifications/issues/549:

    0 讨论(0)
提交回复
热议问题