Re: django-admin.py not working on OS X 10.5

2012-08-04 Thread James Walton
Brandon, I had the same issue and this is how I resolved it. 1. Delete the reference django-admin.py in /usr/local/bin that was generated by the installer. 2. Then, manually recreate the symlink by doing: 3. ln -s YOUR_ABSOLUTE_PATH/build/scripts-2.7/django-admin.py /usr/local/bin 4. Close th

Re: django-admin.py not working on OS X 10.5

2008-05-08 Thread Brandon Taylor
Hello everyone, Sorry for the late reply. I have changed the shebang line to /usr/ local/bin, which is where the Python interpreter is installed. I have changed permissions on django-admin.py to be executable. Here is my .bash_profile: PATH=$PATH:/usr/local/bin PATH="/usr/local/bin:/usr/local/s

Re: django-admin.py not working on OS X 10.5

2008-05-08 Thread Roboto
I will second Francis here 1. I copy my trunk into the default python site-package /Library/ Python/2.5/site-packages/django The key thing is that Leopard comes with it's own built in Python 2.5, where it give priority when it comes to utilizing python. You will need to put anything python relat

Re: django-admin.py not working on OS X 10.5

2008-05-08 Thread Shane Emmons
Did you, "chmod +x django-admin.py"? On Thu, May 8, 2008 at 6:52 AM, Francis <[EMAIL PROTECTED]> wrote: > > It works without problem here. > > 1. I copy my trunk into the default python site-package /Library/ > Python/2.5/site-packages/django > > Normally I use /usr/bin, since local/bin doens't e

Re: django-admin.py not working on OS X 10.5

2008-05-08 Thread Francis
It works without problem here. 1. I copy my trunk into the default python site-package /Library/ Python/2.5/site-packages/django Normally I use /usr/bin, since local/bin doens't exist on Leopard (exept if you are using something like fink or macport) But I tried it to see if it works. 2. I creat

Re: django-admin.py not working on OS X 10.5

2008-05-07 Thread TP
Does django-admin.py have execute permissions? Does the #! line at the top point to where your python interpreter lives? On May 7, 6:46 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote: > Hello everyone, > > I'm setting up a dev environment on a co-worker's Mac running 10.5.2 > > I have Django cehcke

django-admin.py not working on OS X 10.5

2008-05-07 Thread Brandon Taylor
Hello everyone, I'm setting up a dev environment on a co-worker's Mac running 10.5.2 I have Django cehcked out from trunk, and symlinked into Python 2.5.2. I can successfully import Django from within a Python terminal session. I have django-admin.py symlinked from the trunk checkout to /usr/lo