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
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
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
Just remove cryptography
package.
Had a similar problem and found a solution here https://github.com/jazzband/django-push-notifications/issues/549: