Re: python on Mac

2008-08-28 Thread Lou Pecora
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > Hi All. > I'm really new in the python world, so, sorry if my question is particulary > stupid. > I've just installed on my system (Mac OS X 10.4 PPC) the python version > 2.5.2 and all works fine. > My next step is to install the version

Re: Python on Mac

2008-08-27 Thread Rajanikanth Jammalamadaka
Hi! Luca, All you need to do is in the final step of (configure, make and make install), use make altinstall instead of make install. That way, your original python implementation won't be affected. Thanks, Raj On Wed, Aug 27, 2008 at 7:46 AM, <[EMAIL PROTECTED]> wrote: > Hi All. > I'm really

Re: python on mac os 10.4.x

2007-04-03 Thread martin . laloux
Go to http://wiki.python.org/moin/MacPython and http://pythonmac.org/packages/ if you want to download macpython 2.5 or macpython 2.4.4 ("framework" builds). Installation is very easy (package) and you have all you want without problem with the 2.3.5 version wich remains installed and functional

Re: python on mac os 10.4.x

2007-04-02 Thread Stephen Hansen
Check out: http://www.pythonmac.org/packages/ for the latest version of Python, which will run the latest version of wxPython fine. (I'm using wxPython 2.8 on Python 2.4) On 2 Apr 2007 22:00:55 -0700, 7stud <[EMAIL PROTECTED]> wrote: Hi, Python 2.3.5 comes pre-installed on mac os 10.4.7, and

Re: python on Mac

2006-04-11 Thread Alex Martelli
Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: > In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Alex Martelli) wrote: > > >Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: > > > >> In article <[EMAIL PROTECTED]>, > >> "pierreth" <[EMAIL PROTECTED]> wrote: > >> > >> >You removed /usr/bin/py

Re: python on Mac

2006-04-10 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Alex Martelli) wrote: >Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: > >> In article <[EMAIL PROTECTED]>, >> "pierreth" <[EMAIL PROTECTED]> wrote: >> >> >You removed /usr/bin/python! This is a really bad idea >> >> Is there any way to put it

Re: python on Mac

2006-04-10 Thread Alex Martelli
Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote: > In article <[EMAIL PROTECTED]>, > "pierreth" <[EMAIL PROTECTED]> wrote: > > >You removed /usr/bin/python! This is a really bad idea > > Is there any way to put it back, short of a full system reinstall? There's a free 3rd party tool known as Pac

Re: python on Mac

2006-04-07 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, "pierreth" <[EMAIL PROTECTED]> wrote: >You removed /usr/bin/python! This is a really bad idea Is there any way to put it back, short of a full system reinstall? -- http://mail.python.org/mailman/listinfo/python-list

Re: python on Mac

2006-04-06 Thread Thomas Nelson
Ok, I fixed my /usr/bin/python and added /usr/public/bin/ to my PATH in .profile. Everything seems ok now. Thanks again to everyone for their help. THN -- http://mail.python.org/mailman/listinfo/python-list

Re: python on Mac

2006-04-06 Thread Robert Kern
Thomas Nelson wrote: > Well, as I stated in post, I've already replaced the link at > /usr/bin/python. I'm not clear why that's unhealthy. The FAQ describes why it's unhealthy in detail. "FAQ 5.7 Describe Apple's Framework implementation of Python and how that affects me adding new Python imple

Re: python on Mac

2006-04-06 Thread Thomas Nelson
Well, as I stated in post, I've already replaced the link at /usr/bin/python. I'm not clear why that's unhealthy. Should I change it back to whatever it was before? I guess maybe it was /System/Library/Frameworks/Python.framework/Versions/Current/bin/python ? Thanks, THN -- http://mail.python.

Re: python on Mac

2006-04-06 Thread gene tani
Lou Pecora wrote: > YIKES! Don't do that. Don't mess with Apple's python. Not > recommended. Check the MacPython FAQ and Wiki pages. Python 2.4 was > installed in /usr/local/bin. You should put that in your $PATH variable > Before /usr/bin. That will cause the new Python to be launched. >

Re: python on Mac

2006-04-06 Thread Lou Pecora
In article <[EMAIL PROTECTED]>, James Stroud <[EMAIL PROTECTED]> wrote: > Thomas Nelson wrote: > > I just purchased a new macbook (os 10.4.6), and I'm trying to install > > python 2.4 on it. I downloaded and ran the two installers recommended > > at http://www.python.org/download/mac/. Now I ha

Re: python on Mac

2006-04-05 Thread Robert Kern
Robert Kern wrote: > James Stroud wrote: >>The python in /usr/bin is a link (to a link). You can do this: >> >>sudo rm /usr/bin/python >>sudo ln -s \ >>/System/Library/Frameworks/Python.framework/Versions/2.4/bin/python \ >>/usr/bin/python > > No, for the love of all that is holy, don't d

Re: python on Mac

2006-04-05 Thread Robert Kern
James Stroud wrote: > Thomas Nelson wrote: > >>I just purchased a new macbook (os 10.4.6), and I'm trying to install >>python 2.4 on it. I downloaded and ran the two installers recommended >>at http://www.python.org/download/mac/. Now I have IDLE, which runs >>2.4.1, but typing "python" at a ter

Re: python on Mac

2006-04-05 Thread pierreth
You removed /usr/bin/python! This is a really bad idea. You should never modify /usr/bin because the system is expecting it. This is why the new installation is in /usr/local/bin. Modify your /usr/local instead are change your .login file instead. It is much safer. -- http://mail.python.org/mail

Re: python on Mac

2006-04-05 Thread Thomas Nelson
Thanks to you both. I downloaded the dmg suggested, and trustingly typed: sudo rm /usr/bin/python sudo ln -s /usr/local/bin/python2.4 /usr/bin/python And now my command line and scripts behave the way I expect. Thanks again. THN -- http://mail.python.org/mailman/listinfo/python-list

Re: python on Mac

2006-04-05 Thread Alex Martelli
Thomas Nelson <[EMAIL PROTECTED]> wrote: ... > at http://www.python.org/download/mac/. Now I have IDLE, which runs Darn, that page needs to be fixed -- it's out of date!-( Sorry... See instead and download

Re: python on Mac

2006-04-05 Thread Thomas Nelson
There is no 2.4 in my Versions folder, only 2.3 and current. Should one of the installers have created this directory? Which one? THN -- http://mail.python.org/mailman/listinfo/python-list

Re: python on Mac

2006-04-05 Thread James Stroud
Thomas Nelson wrote: > I just purchased a new macbook (os 10.4.6), and I'm trying to install > python 2.4 on it. I downloaded and ran the two installers recommended > at http://www.python.org/download/mac/. Now I have IDLE, which runs > 2.4.1, but typing "python" at a terminal still opens 2.3.5,

Re: python on mac keystroke

2005-04-26 Thread Ian A. York
In article <[EMAIL PROTECTED]>, Eric Texier <[EMAIL PROTECTED]> wrote: >I am testing python on a mac. In the python console, none of the >control as the arrow to scroll back to a preview line are >working. How can I fix this. If I understand what you're asking, you need to install readline, which