I have a problem setting up django.
My situation: I have Anaconda Python 2.7 on my computer with Windows 8. At the command prompt, type the Anaconda: pip install django. It is successful.
Then I create a folder called "newproject". At the command prompt, I went to the "newproject" folder. Then django-admin.py startproject newproject. It is successful.
Then I launched python manage.py runserver. It tells me
"...can't open file 'manage.py': [Errno 2] No such file or directory"
I checked the udemy django installation guide and other manuals on the net. I even created a virtual environment. But the main problem is always:can't open file 'manage.py'
source
share