0

When I want to start new Django project this is what I get:

enter image description here

As you can see, nothing is happenning, except showing all available options.

Where is the problem?

Irmantas Želionis
  • 2,194
  • 3
  • 17
  • 30
  • what happens when you execute `django-admin.py` by referencing it using its absolute path on your filesystem? – dm03514 Feb 15 '14 at 19:34
  • http://stackoverflow.com/a/5601612/538284 , http://stackoverflow.com/a/3237555/538284, http://stackoverflow.com/a/10732170/538284, http://stackoverflow.com/q/8989825/538284 , http://stackoverflow.com/q/9252970/538284 – Omid Raha Feb 15 '14 at 20:26

1 Answers1

1

Invoke python explicitly:

python django-admin.py startproject....

If still getting the same problem, see this answer: https://stackoverflow.com/a/14936708/236195

Community
  • 1
  • 1
frnhr
  • 12,354
  • 9
  • 63
  • 90