Hi there. I recently upgraded my machine's OS from 10.2.8 (jaguar) to
10.3.9 (panther). I removed my previous 2.3.5 python mac install by
removing Python.framework and MacPython-2.3 from Applications. I also
removed python pythonw python2.3 and pythonw2.3 from /usr/local/bin. I
installed Panth
On Jan 7, 2006, at 4:13 PM, David Pratt wrote:
> Hi there. I recently upgraded my machine's OS from 10.2.8 (jaguar) to
> 10.3.9 (panther). I removed my previous 2.3.5 python mac install by
> removing Python.framework and MacPython-2.3 from Applications. I also
> removed python pythonw python2.3 a
Hi Bob. I have this path is in my .cshrc where I am setting paths for my
home. This seemed to work fine for Jaguar but I guess not for Panther.
[dp_mac450:~] davidpra% python2.4
Python 2.4.1 (#2, Mar 31 2005, 00:05:10)
[GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin
Type "help", "c
Given that, you must be placing /usr/local/bin after /usr/bin in your
PATH. That is not the correct thing to do for the behavior you want.
e.g. you currently have this:
export PATH=$PATH:/usr/local/bin
but you want this instead:
export PATH=/usr/local/bin:$PATH
-bob
On Jan 7, 2006, at 5:00
Right. I'm good to go! Many thanks for your help Bob :-)
Regards,
David
Bob Ippolito wrote:
> Given that, you must be placing /usr/local/bin after /usr/bin in your
> PATH. That is not the correct thing to do for the behavior you want.
>
> e.g. you currently have this:
>
> export PATH=$PATH:/