Re: Django Troubleshooting

2012-10-22 Thread Sun Simon
Thank you sir. It works! On Sunday, October 21, 2012 7:55:23 AM UTC+8, Amyth wrote: > > Yeah, > > those are CLI commands. Although "tar" and "sudo" would not work with > windows as they are linux terminal commands. you may follow this easy step > by step procedure on how to setup django on >

Re: Django Troubleshooting

2012-10-22 Thread Jani Tiainen
19.10.2012 7:07, Sun Simon kirjoitti: https://www.djangoproject.com/download/ I am installing Django for Python on Win XP and came across this problem during installation: |tar xzvf Django-1.4.2.tar.gz cd Django-1.4.2 sudo python setup.py install What does "cd" mean? DOes it mean that I have

Re: Django Troubleshooting

2012-10-20 Thread Amyth Arora
Yeah, those are CLI commands. Although "tar" and "sudo" would not work with windows as they are linux terminal commands. you may follow this easy step by step procedure on how to setup django on windows. Though this was written for windows 7

Re: Django Troubleshooting

2012-10-19 Thread Avraham Serour
you should use pip to install, why are you installing from source? if you are worried about filling your python installation with lots of stuff you should use virtualenv On Fri, Oct 19, 2012 at 6:15 AM, Lachlan Musicman wrote: > On Fri, Oct 19, 2012 at 4:07 PM, Sun Simon

Re: Django Troubleshooting

2012-10-18 Thread Lachlan Musicman
On Fri, Oct 19, 2012 at 4:07 PM, Sun Simon wrote: > https://www.djangoproject.com/download/ > > I am installing Django for Python on Win XP and came across this problem > during installation: > > > tar xzvf Django-1.4.2.tar.gz > cd Django-1.4.2 > sudo python setup.py

Django Troubleshooting

2012-10-18 Thread Sun Simon
https://www.djangoproject.com/download/ I am installing Django for Python on Win XP and came across this problem during installation: tar xzvf Django-1.4.2.tar.gz cd Django-1.4.2 sudo python setup.py install What does "cd" mean? DOes it mean that I have to use command line to type it? --