Concerned_Citizen
Concerned_Citizen

Reputation: 6835

django-admin startproject not working as intended

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

Answers (1)

Concerned_Citizen
Concerned_Citizen

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

Related Questions