Re: Error During Django Install on Mac

2007-10-24 Thread bramble
On Oct 24, 2:25 am, jnap <[EMAIL PROTECTED]> wrote: > I am new at this so I apologize if this is a stupid question... Hi jnap, You would probably benefit from learning some basic shell usage. For example: * using commands like ``cd``, ``ln``, ``sudo``, ``cp``, and so on. * how environment varia

Re: Error During Django Install on Mac

2007-10-24 Thread bramble
On Oct 24, 2:48 am, Ben van Staveren <[EMAIL PROTECTED]> wrote: > No offense but uh, RTFM? That wasn't particularly courteous. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this g

Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson
> The link should technically go in /usr/local/bin as Django > was build locally, and it's part of the distributors package set > :-) Oops, that should read "it's NOT part of the distributors package set". --Jon --~--~-~--~~~---~--~~ You received this message be

Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson
Hi, > sudo ln -s pathtodjango/bin/django-admin.py /usr/bin/django-admin.py ... that was my next step :-) The link should technically go in /usr/local/bin as Django was build locally, and it's part of the distributors package set :-) --Jon --~--~-~--~~~---~--~~

Re: Error During Django Install on Mac

2007-10-24 Thread Kenneth Gonsalves
On 24-Oct-07, at 12:31 PM, jnap wrote: > Now I get this error: -bash: django-admin.py: command not found when I > run django-admin.py startproject testproject sudo ln -s pathtodjango/bin/django-admin.py /usr/bin/django-admin.py -- regards kg http://lawgon.livejournal.com http://nrcfosshelpli

Re: Error During Django Install on Mac

2007-10-24 Thread Kenneth Gonsalves
On 24-Oct-07, at 12:15 PM, jnap wrote: > > anyone? > > On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote: >> sorry for another dumb question...but how do i do it as root? on ubuntu - type sudo ln -s etc on other distros type su, press enter and enter the root password and then execute the co

Re: Error During Django Install on Mac

2007-10-24 Thread Jon Atkinson
Please could you run the following command in your terminal, and paste the output into your reply: echo $PATH --Jon On 10/24/07, jnap <[EMAIL PROTECTED]> wrote: > > Don't know what RTFM means but sudo works. > > Now I get this error: -bash: django-admin.py: command not found when I > run django

Re: Error During Django Install on Mac

2007-10-24 Thread jnap
Don't know what RTFM means but sudo works. Now I get this error: -bash: django-admin.py: command not found when I run django-admin.py startproject testproject I suppose I am running it from the wrong directory but I have tried multiple ones and I get the same result with each try. On Oct 24, 2

Re: Error During Django Install on Mac

2007-10-23 Thread Ben van Staveren
No offense but uh, RTFM? (Protip: man sudo, man su) On 24/10/2007, at 1:45 PM, jnap wrote: > > anyone? > > On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote: >> sorry for another dumb question...but how do i do it as root? >> >> On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:

Re: Error During Django Install on Mac

2007-10-23 Thread jnap
anyone? On Oct 24, 2:36 am, jnap <[EMAIL PROTECTED]> wrote: > sorry for another dumb question...but how do i do it as root? > > On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > On 24-Oct-07, at 11:55 AM, jnap wrote: > > > > jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-pa

Re: Error During Django Install on Mac

2007-10-23 Thread jnap
sorry for another dumb question...but how do i do it as root? On Oct 24, 2:32 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 24-Oct-07, at 11:55 AM, jnap wrote: > > > jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/ > > django/bin/django-admin.py /usr/local/bin/django-

Re: Error During Django Install on Mac

2007-10-23 Thread Kenneth Gonsalves
On 24-Oct-07, at 11:55 AM, jnap wrote: > jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/ > django/bin/django-admin.py /usr/local/bin/django-admin.py > ln: /usr/local/bin/django-admin.py: Permission denied you have to do it as root -- regards kg http://lawgon.livejournal

Re: Error During Django Install on Mac

2007-10-23 Thread jnap
Here is my current bash_profile in case you need it: # Setting PATH for MacPython 2.5 # The orginal version is saved in .bash_profile.pysave PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:$ {PATH}" export PATH=$PATH:/usr/local/bin On Oct 24, 2:25 am, jnap <[EMAIL PROTECTED

Error During Django Install on Mac

2007-10-23 Thread jnap
I am new at this so I apologize if this is a stupid question... Why do I keep getting a permission denied error when I run the following: jnap:~ jnap$ ln -s /usr/local/lib/python2.3/site-packages/django_src/ django/bin/django-admin.py /usr/local/bin/django-admin.py ln: /usr/local/bin/django-admi