I am new at Django and I have made an app. Here is the link to the github repository: https://github.com/akashmalla07/spring. I followed this http://tutorial.djangogirls.org/en/deploy/ to deploy my code, and while running python manage.py migrate i am getting this error
ImportError: No module named 'django_nose'
I did not get this problem while developing on my local machine, but I am getting this problem on PythonAnywhere. Please help me. Thanks in advance
edited after following your solution i got this error
File "/tmp/pip-build-_l_qs3mn/wsgiref/setup.py", line 5, in <module>
import ez_setup
File "/tmp/pip-build-_l_qs3mn/wsgiref/ez_setup/__init__.py", line 170
print "Setuptools version",version,"or greater has been installed."
^
SyntaxError: Missing parentheses in call to 'print'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-
build-_l_qs3mn/wsgiref/
And i have referred to other stackoverflow solution i.e
pip install --upgrade setuptools
but didnot worked for me.