thinkster-django-angular-boilerplate
thinkster-django-angular-boilerplate copied to clipboard
SyntaxError at installing wsgiref on python3 virtualenv
in python3 wsgiref
is in standard library and in fact cannot be installed via pip in virtualenv
hence removing wsgiref==0.1.2
from requirements.txt and the doing pip install -r requirements.txt
worked perfectly for me on python3.
Very helpful. Thanks!