Reputation: 6835
I am going through a Django tutorial and I tried to use django-admin startproject NAME
to create project folders.
According to the tutorial, I should get the following after typing that in:
NAME/
__init__.py
manage.py
settings.py
urls.py
I typed that in Powershell. No error message came out but it did not create anything in the current directory.
What am I doing wrong? I am working on Vista x32 with Python 2.7. And I have Django 1.4.2 installed. I also have
the C:/Python27
under environment variables.
Upvotes: 0
Views: 546
Reputation: 6835
Using python C:\Python27\Scripts\django-admin.py startproject NAME
without having to go through virtualenc.
Here's the link I got this:
django-admin.py startproject is not working
Upvotes: 1