installation issues

2007-07-08 Thread surfwizz
I am having trouble installing Django on Mac OSX 10.4.10. Any help would be welcome. Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@

Re: installation issues

2007-07-08 Thread Russell Keith-Magee
On 7/9/07, surfwizz <[EMAIL PROTECTED]> wrote: > > I am having trouble installing Django on Mac OSX 10.4.10. Any help > would be welcome. Thanks! Django works fine on MacOSX - I'm developing on OSX right now. If you want help, you're going to need to ask a specific question. What part of the i

Re: installation issues

2007-07-09 Thread Joseph Heck
Where are you getting stuck? I assume you it works - it's just a matter of getting the pieces/parts installed. -joe On 7/8/07, surfwizz <[EMAIL PROTECTED]> wrote: > > I am having trouble installing Django on Mac OSX 10.4.10. Any help > would be welcome. Thanks! > > > > > --~--~-~--~--

Re: installation issues

2007-07-09 Thread surfwizz
I had trouble running the install as per the instructions (using terminal), so I just ran setup.py in IDLE as a module. Is there a way to fix this, or get this install running properly? On Jul 8, 10:27 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On 7/9/07, surfwizz <[EMAIL PROTECTED]>

Re: installation issues

2007-07-09 Thread Russell Keith-Magee
On 7/10/07, surfwizz <[EMAIL PROTECTED]> wrote: > > I had trouble running the install as per the instructions (using > terminal), so I just ran setup.py in IDLE as a module. Is there a way > to fix this, or get this install running properly? I don't know how to put this more clearly. Django wor

Re: installation issues

2007-07-10 Thread surfwizz
When I went to the beginner lesson and tried to set up a project, it reports that it cannot find the path that I am trying to use. I don't know if this helps, but this is what the software is telling me. On Jul 9, 11:02 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On 7/10/07,surfwizz<[E

Re: installation issues

2007-07-10 Thread Russell Keith-Magee
On 7/11/07, surfwizz <[EMAIL PROTECTED]> wrote: > > When I went to the beginner lesson and tried to set up a project, it > reports that it cannot find the path that I am trying to use. > I don't know if this helps, but this is what the software is telling > me. No. It doesn't. Not even a little b

Re: installation issues

2007-07-10 Thread Carl Karsten
surfwizz wrote: > I am having trouble installing Django on Mac OSX 10.4.10. Any help > would be welcome. Thanks! > > Im gona take a shot: Can you run python and get a >>> prompt? If yes, what version is it? and what happens when you >>> import django Carl K --~--~-~--~

Re: installation issues

2007-07-12 Thread surfwizz
When I run python in terminal, then use >>>import Django, here's what it looks like. Python 2.5.1 (r251:54869, Apr 18 2007, 22:08:04) [GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import django Traceback (most rec

Re: installation issues

2007-07-12 Thread Vincent Nijs
How about 'import django' rather than 'import Django'? Vincent On 7/12/07 4:15 PM, "surfwizz" <[EMAIL PROTECTED]> wrote: > > When I run python in terminal, then use >>>import Django, here's what > it looks like. > Python 2.5.1 (r251:54869, Apr 18 2007, 22:08:04) > [GCC 4.0.1 (Apple Computer,

Re: installation issues

2007-07-12 Thread surfwizz
Here's what that looks like: >>> import Django Traceback (most recent call last): File "", line 1, in ImportError: No module named Django >>> On Jul 12, 2:19 pm, Vincent Nijs <[EMAIL PROTECTED]> wrote: > How about 'import django' rather than 'import Django'? > > Vincent > > On 7/12/07 4:15 PM

Re: installation issues

2007-07-12 Thread Vincent Nijs
You already told us that. Don't use Django but django. The command is case-sensitive. import django Vincent On 7/12/07 4:34 PM, "surfwizz" <[EMAIL PROTECTED]> wrote: > > Here's what that looks like: import Django > Traceback (most recent call last): > File "", line 1, in > ImportErro

Re: installation issues

2007-07-12 Thread surfwizz
I tried that originally. I'm sorry that I thought that you meant that I should try it as >>>import Django. Anyway, here's what >>>import django looks like: Python 2.5.1 (r251:54869, Apr 18 2007, 22:08:04) [GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin Type "help", "copyright", "credits"

Re: installation issues

2007-07-12 Thread Russell Keith-Magee
On 7/13/07, surfwizz <[EMAIL PROTECTED]> wrote: > > I tried that originally. I'm sorry that I thought that you meant that > I should try it as >>>import Django. Anyway, here's what >>>import > django looks like: > Python 2.5.1 (r251:54869, Apr 18 2007, 22:08:04) Ok - your prompt is reporting Py

Re: installation issues

2007-07-12 Thread surfwizz
I installed python from www.python.org, so the command prompt opens it into 2.5.1. That's what I tried to install django into. On Jul 12, 8:04 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On 7/13/07,surfwizz<[EMAIL PROTECTED]> wrote: > > > > > I tried that originally. I'm sorry that I

Re: installation issues

2007-07-12 Thread Vincent Nijs
Can you tell us what version of Django you tried to install and what exact steps you took? I am using the Django development version on a mac and 'import django' works just fine. I would recommend you install svn through the link below: http://metissian.com/downloads/macosx/subversion/subversion-

Re: installation issues

2007-07-13 Thread Dirk van Oosterbosch, IR labs
On 13-jul-2007, at 5:42, surfwizz wrote: > I installed python from www.python.org, so the command prompt opens it > into 2.5.1. That's what I tried to install django into. Can you confirm that django is installed at this location? /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/

Re: installation issues

2007-07-13 Thread surfwizz
I could not find any folders at the lib location. To clarify how the IDLE thing went, I tried running sudo python setup.py, but it didn't work, so I opened setup.py in IDLE, Then went to 'run', in the menubar, and clicked 'run module'. It prompted me to save it, so I did. that was the whole pyt

Re: installation issues

2007-07-13 Thread Carl Karsten
run this command, show us what you get: python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" So like this: [EMAIL PROTECTED]:~$ python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" /usr/lib/python2.5/site-packages Carl K surfwizz w

Re: installation issues

2007-07-13 Thread surfwizz
Here's what that looks like: new-host-3:~ wdavis$ python "from distutils.sysconfig import get_python_lib; print get_python_lib()" /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/ Contents/MacOS/Python: can't open file 'from distutils.sysconfig import get_python_lib; print ge

Re: installation issues

2007-07-13 Thread Carl Karsten
you missed the -c guessing you need to figure out how to cut/paste into your terminal. I think it is action-v for paste, where action is the cloverleaf. Carl K surfwizz wrote: > Here's what that looks like: > new-host-3:~ wdavis$ python "from distutils.sysconfig import > get_python_lib; prin

Re: installation issues

2007-07-13 Thread surfwizz
Sorry about that. Thanks for the tip on using copy/paste. Here's the result for that: new-host-3:~ wdavis$ python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site- packages On Jul 13, 6:49 pm, Carl

Re: installation issues

2007-07-14 Thread Carl Karsten
Ok, getting somewhere. That is the dir that needs to know about django. Next we need to know where django is, and 'install' that into the site-packages dir. 'install' is just a link, .pth file or putting django directly in that dir. I recommend the link. more details are here: http://www.dj

Re: installation issues

2007-07-14 Thread surfwizz
I think that the install from the website instructions worked. Your code helped me understand what I needed to do. thanks! On Jul 14, 6:04 am, Carl Karsten <[EMAIL PROTECTED]> wrote: > Ok, getting somewhere. That is the dir that needs to know about django. > > Next we need to know where django

GeoDjango/PostGIS installation issues

2014-06-27 Thread Ben Dean
I'm stymied on installing GeoDjango with Postgres9.3 on Ubuntu. I've posted the details here , so any help would be appreciated and I can promise you all the internet points I'm capable of distributing! -

Re: GeoDjango/PostGIS installation issues

2014-06-27 Thread Alex Mandel
On 06/27/2014 01:47 PM, Ben Dean wrote: > I'm stymied on installing GeoDjango with Postgres9.3 on Ubuntu. I've posted > the details here > , > > so any help would be appreciated and I can promise you all th

Re: GeoDjango/PostGIS installation issues

2014-06-27 Thread Alex Mandel
On 06/27/2014 02:13 PM, Alex Mandel wrote: > On 06/27/2014 01:47 PM, Ben Dean wrote: >> I'm stymied on installing GeoDjango with Postgres9.3 on Ubuntu. I've posted >> the details here >> , >> >> so any help