Re: Suddenly "django-admin.py startproject" not working

2013-01-26 Thread Bill Freeman
What OS? Is the file django-admin.py on your path? Is it marked as executable? Try: python django-admin.py startproject mysite Bill On Sat, Jan 26, 2013 at 4:06 AM, Mihkel Lukats wrote: > Hi, > > suddenly "django-admin.py startproject mysite" doesn't work. what could > cause this? Workd be

Suddenly "django-admin.py startproject" not working

2013-01-26 Thread Mihkel Lukats
Hi, suddenly "django-admin.py startproject mysite" doesn't work. what could cause this? Workd befor. now when i type it in it will open the file django-admin.py... not execute the command.. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: django-admin.py startproject not working

2011-01-16 Thread f.romain
You guys are the best!! Thanks On Dec 12 2010, 10:28 pm, Brad Reardon wrote: > Another tip is to add *.py to the PATHEXT variable or the like. That will > allow the script to be found on the path. I'm not sure if that's the right > variable name, but check it out. > > On Dec 12, 2010, at 10:13

Re: django-admin.py startproject not working

2010-12-12 Thread Brad Reardon
Another tip is to add *.py to the PATHEXT variable or the like. That will allow the script to be found on the path. I'm not sure if that's the right variable name, but check it out. On Dec 12, 2010, at 10:13 PM, codegal wrote: > Thanks. Good pointer for running python scripts in the future -

Re: django-admin.py startproject not working

2010-12-12 Thread codegal
Thanks. Good pointer for running python scripts in the future - will follow as a matter of practice. As it turned out in this case, I just wasn't providing the full path. I had set up a .pth file, and had tried copying django-admin.py into the main Python directory, but it turned out that directo

Re: django-admin.py startproject not working

2010-12-12 Thread Brad Reardon
Vista is very picky about permissions. Try running the command prompt as an administrator. On Sun, Dec 12, 2010 at 8:06 PM, codegal wrote: > I'm trying to create my first Django project, and I must be missing > something really basic. I'm using Windows Vista, and have installed > Python 2.7 and

django-admin.py startproject not working

2010-12-12 Thread codegal
I'm trying to create my first Django project, and I must be missing something really basic. I'm using Windows Vista, and have installed Python 2.7 and Django 1.2.3, put the location of django-admin.py into my PATH variable, and navigated via command line to the location where I want to create a pro