Re: [Pythonmac-SIG] Crossfold Validation

2010-02-19 Thread Robert Kern
machine. http://www.scipy.org/Mailing_Lists You may also want to check the SpamBayes project. Their validation framework might be applicable to your problem set. http://spambayes.sourceforge.net/ -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma

Re: [Pythonmac-SIG] Unwanted PPC build in setuptools

2009-10-22 Thread Robert Kern
On 2009-10-22 07:02 AM, Ronald Oussoren wrote: On 21 Oct, 2009, at 22:14, Dave Peterson wrote: Ronald Oussoren wrote: On 19 Oct, 2009, at 23:20, Robert Kern wrote: I presume he's using the Enthought Python Distribution (disclosure: I work for Enthought), which does have such a version

Re: [Pythonmac-SIG] Unwanted PPC build in setuptools

2009-10-21 Thread Robert Kern
On 2009-10-21 14:59 PM, Ronald Oussoren wrote: On 19 Oct, 2009, at 23:20, Robert Kern wrote: Edit /Library/Frameworks/.../lib/python2.5/config/Makefile to remove the occurrences of -arch ppc if you never want to build PPC versions of stuff again. More recent versions of EPD should have

Re: [Pythonmac-SIG] Unwanted PPC build in setuptools

2009-10-19 Thread Robert Kern
and uninstall EPD in order to try it out without breaking their previously installed Pythons. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth

Re: [Pythonmac-SIG] PIL and Snow Leopard

2009-10-04 Thread Robert Kern
apps for others to run. OS X's 64-bit subsystem, now standard in Snow Leopard, does not have Carbon for UIs, only Cocoa. wxPython is still built against Carbon. wxCocoa is still in development. 32-bit builds of Python can still work with wxPython on Snow Leopard, though. -- Robert Kern I have

Re: [Pythonmac-SIG] Problem with numpy on Leopard

2007-11-02 Thread Robert Kern
install_requires(numpy==1.0.3) now setuptools will download and install numpy1.0.3, but it won't get used, 'cause there is an older numpy earlier on the pythonpath. This is incorrect. sys.path gets modified appropriately. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless

Re: [Pythonmac-SIG] readline support for OS X Leopard

2007-10-30 Thread Robert Kern
Robert Kern wrote: Boyd Waters wrote: On Oct 26, 2007, at 7:50 PM, [EMAIL PROTECTED] wrote: It right there in my original message (and in the python man page). You have to use EditLine syntax: readline.parse_and_bind (bind ^I rl_complete) Edward's example of using EditLine syntax works

Re: [Pythonmac-SIG] which fortran for pythonmac.org binaries?

2007-06-03 Thread Robert Kern
Christopher Barker wrote: So does that mean we can build Universal binaries of Scipy now? With some fiddling, probably. And back to the original question -- is the binary at python mac (only 2.4 at my last look) Universal? Almost certainly not. -- Robert Kern I have come to believe

Re: [Pythonmac-SIG] which fortran for pythonmac.org binaries?

2007-06-03 Thread Robert Kern
Robert Kern wrote: Robert Kern wrote: Christopher Barker wrote: So does that mean we can build Universal binaries of Scipy now? With some fiddling, probably. Namely, $ LDFLAGS=-undefined dynamic_lookup -bundle -arch i386 -arch ppc python setup.py config_fc --fcompiler=gnu95 --arch

Re: [Pythonmac-SIG] which fortran for pythonmac.org binaries?

2007-06-01 Thread Robert Kern
bispev.o (for architecture i386): Mach-O object i386 bispev.o (for architecture ppc):Mach-O object ppc -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying

Re: [Pythonmac-SIG] easy_install question

2007-04-23 Thread Robert Kern
-unfriendliness. Whatever reference Ulysses found, it certainly wasn't to any officially distributed egg. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth

Re: [Pythonmac-SIG] numpy in python 2.4 vs 2.5

2007-02-09 Thread Robert Kern
(1.3.31 should be fine, I think), regenerate the gdal_wrap.cpp, and recompile. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth. -- Umberto Eco

Re: [Pythonmac-SIG] Compiling Scipy/available binaries for Universal Python 2.4?

2007-01-12 Thread Robert Kern
Christopher Barker wrote: Robert Kern wrote: Yup. -framework Accelerate Robert, just so we're clear here. If one does a straight setup.py build with numpy 1.0.1, do you get a version that uses Veclib? I do understand that that is the Fortran-compatible version, and thus may result

Re: [Pythonmac-SIG] Compiling Scipy/available binaries for Universal Python 2.4?

2007-01-11 Thread Robert Kern
--fcompiler=gnu95 build_ext -lSystemStubs --fcompiler=gnu95 build -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth. -- Umberto Eco

Re: [Pythonmac-SIG] Compiling Scipy/available binaries for Universal Python 2.4?

2007-01-11 Thread Robert Kern
of the BLAS subroutines that ATLAS and vecLib provide. And the C versions of LAPACK subroutines are simply missing. Neither are necessary, though, just nice to have. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad

Re: [Pythonmac-SIG] Compiling Scipy/available binaries for Universal Python 2.4?

2007-01-11 Thread Robert Kern
David Warde-Farley wrote: On 11-Jan-07, at 11:18 PM, Robert Kern wrote: Well, it's linking just fine, but vecLib removed the ATLAS version information that the scipy build system uses to determine whether or not to build the wrappers for the C versions of the BLAS subroutines

Re: [Pythonmac-SIG] eggs and extraction

2006-12-09 Thread Robert Kern
are all on-topic and tell you what you want to know about eggs (although they won't tell you where to get matplotlib documentation and examples). -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret

Re: [Pythonmac-SIG] eggs and extraction

2006-12-09 Thread Robert Kern
it in development mode by going to that directory and running:: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python setup.py develop See the setuptools documentation for the develop command for more info. -- Robert Kern I have come to believe that the whole world

Re: [Pythonmac-SIG] using matplotlib, ipython, etc. w/MacPython

2006-12-06 Thread Robert Kern
Python distribution, and I don't have time to update it anymore. References recommending it should be removed. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth

Re: [Pythonmac-SIG] In need of an OS 10.4.8-compatible Universal binary built w/ gcc 3.3 (NOT 4.0)

2006-11-13 Thread Robert Kern
instructions. While there are still some problems with gfortran (which only supports gcc 4.0 rather than g77 with only supports gcc 3.x), they are few and minor. Install a gfortran binary from this page: http://hpc.sourceforge.net Then build scipy using --fcompiler=gnu95 -- Robert Kern I have

Re: [Pythonmac-SIG] Packaging numpy with py2app

2006-07-18 Thread Robert Kern
it is (it used to have postpone=True). If Pearu, who wrote that bit of code, doesn't speak up by Thursday, I'll have it removed in favor of regular imports for the beta. -- Robert Kern I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own

Re: [Pythonmac-SIG] Compiling Numeric for OSX-intel

2006-04-24 Thread Robert Kern
until recently, it also showed up when using gfortran. It should be fixed now in recent SVN checkouts of numpy. -- Robert Kern [EMAIL PROTECTED] I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though

Re: [Pythonmac-SIG] readline: where and how installed?

2006-04-14 Thread Robert Kern
. What's the use case here? 1) and 2) certainly don't have any readline capability built in to them. The Emacs shell buffer does, but it's not the same thing as the readline module, which IPython accesses to add its own completer functions. -- Robert Kern [EMAIL PROTECTED] I have come to believe

Re: [Pythonmac-SIG] Numpy Scipy and Darwinports

2006-03-31 Thread Robert Kern
of the fortran compiler through an environment variable, I don't think. I recommend making a symlink named gfortran to the actual executable. Then: CC=gcc-dp-4.1 python setup.py config_fc --fcompiler=gnu95 build_src build_clib build_ext build -- Robert Kern [EMAIL PROTECTED] I have come to believe

Re: [Pythonmac-SIG] Bulding numpy with the Universal Build

2006-03-29 Thread Robert Kern
. I don't actually use numpy myself, so don't know how to properly test it. numpy.test() will run the test suite. -- Robert Kern [EMAIL PROTECTED] I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret

Re: [Pythonmac-SIG] Problems installing Numpy using Universal MacPython

2006-03-27 Thread Robert Kern
to distutils. We may have to duplicate those changes in numpy.distutils. -- Robert Kern [EMAIL PROTECTED] I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth. -- Umberto

Re: [Pythonmac-SIG] Unix-amateur question

2006-03-07 Thread Robert Kern
this use. Since this is a common idiom for programs that start external editors, this executable ought to have the desired behavior (possibly available through a command line option). One should use this executable instead. -- Robert Kern [EMAIL PROTECTED] I have come to believe that the whole

Re: [Pythonmac-SIG] Pythonw and VPython and Fink

2006-02-14 Thread Robert Kern
Dethe Elza wrote: I think the solution is for VPython to be ported to Aqua instead of using X11 (so it can use regular OS X Python, not Fink, among other good things). Framework builds of Python can use X11 just fine. I'm not sure that's the holdup. -- Robert Kern [EMAIL PROTECTED

Re: [Pythonmac-SIG] strange #!/usr/bin/pythonw behavior...

2006-02-10 Thread Robert Kern
the long path didn't work either. It bombs on import of appscript: Try #!/usr/bin/env /usr/bin/pythonw -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Experiences with 64 bit on PowerMac G5s?

2006-01-26 Thread Robert Kern
://numeric.scipy.org/ That said, I don't think many people have actually been using 32-bit arrays with numpy, yet, so there are probably still some issues to be worked out. Disclaimer: I am a numpy developer. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high

Re: [Pythonmac-SIG] python2.4 crashes (bus error)

2005-10-24 Thread Robert Kern
with f2py; nothing Mac-specific here. You'll want to ask on scipy-dev. We'll need to know what versions of f2py and Numeric (scipy_core?) you are using. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] pygame binaries

2005-09-21 Thread Robert Kern
titled ANN: pygame 1.7.0 for Mac OS X 10.3 .zip files created by Python's ZipFile don't interact well with unzip(1). bdist_mpkg got patched with a workaround, but apparently the pygame installer .zip never got updated. Unzipping with StuffIt Expander will set the appropriate permissions. -- Robert

Re: [Pythonmac-SIG] pth file location

2005-09-16 Thread Robert Kern
by the err msg does not correspond to the path specified in the .pth file. Could you actually show us the error messages? -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] CoreGraphics module for python 2.4.1

2005-09-12 Thread Robert Kern
, of course. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo

Re: [Pythonmac-SIG] messed up Tiger python install

2005-09-12 Thread Robert Kern
the terminal. Such people need to know something as basic as the $PATH anyways. The best part of this approach is that you don't have to brush up on anything. ;-) -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Hello; F2PY

2005-07-28 Thread Robert Kern
to get around this issue. It works very well using g77-3.4 from http://hpc.sf.net with gcc-3.3 on Tiger. The gfortran support is a little flaky, I believe. Hell, gfortran is a little flaky. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves

Re: [Pythonmac-SIG] late start with tiger

2005-07-28 Thread Robert Kern
environment variable. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org

Re: [Pythonmac-SIG] Solid GUI toolkits for Mac?

2005-07-27 Thread Robert Kern
-designed GUI framework I've yet seen. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http

Re: [Pythonmac-SIG] Errors with simple_plot in matplotlib: type is wrong for / operator?

2005-07-26 Thread Robert Kern
Louis Pecora wrote: I got my Python back up and running thanks to help from Bob Impolito and Robert Kern (site packages and .pth files and new system install). * I have installed wxPython and matplotlib. But when I run the simple_plot.py program: #!/usr/bin/pythonw I'm not sure about

Re: [Pythonmac-SIG] Can't get re-installed python to recognize old paths.

2005-07-22 Thread Robert Kern
-- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig

Re: [Pythonmac-SIG] not MacPython - right place?

2005-07-20 Thread Robert Kern
to find them. If it does worry you so much, then install Python 2.4.1, which places its files in /Library/Frameworks/Python.framework and be done with it. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard

Re: [Pythonmac-SIG] not MacPython - right place?

2005-07-20 Thread Robert Kern
built on Panther will also work on Tiger. I am currently using the semi-official Python 2.4.1 build from www.python.org on Tiger. The packages at pythonmac.org for 2.4.1 work just fine on Tiger. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves

Re: [Pythonmac-SIG] 2.4.1 Installed and roughly working, but modules missing.

2005-07-20 Thread Robert Kern
that and then the 'kinds' problem came up. Any ideas? It's not in the main Numeric package any more. Get it from CVS. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] OS X C API bug?

2005-06-27 Thread Robert Kern
3.3. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo

Re: [Pythonmac-SIG] Python VTK shared libraries

2005-06-22 Thread Robert Kern
are fine. Note that there other problems. The .so's and .dylib's point back to the build directory for the library dependencies. I used macholib from py2app to rewrite the headers to point to the installation directory. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows

Re: [Pythonmac-SIG] Where to go for wxPython help tutorials?

2005-06-16 Thread Robert Kern
not in any particular order. I do interactive plotting with matplotlib all the time exactly as you describe. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Where to go for wxPython help tutorials?

2005-06-16 Thread Robert Kern
Chris Barker wrote: Robert Kern wrote: I do interactive plotting with matplotlib all the time exactly as you describe. Robert, do you have any small demo programs that do this? I think it would be a good thing to have out there. Perhaps the embedded_in_wx examples already do

Re: [Pythonmac-SIG] How do you install TkInter for python 2.4 (on 10.3)

2005-06-16 Thread Robert Kern
?) and then drops a nice crash window with a stack trace in the Tcl internals. I haven't been able to track down the problem, but it is matplotlib-specific. I recommend wxPython 2.6.1 on Tiger for matplotlib. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves

Re: [Pythonmac-SIG] py2app data files

2005-06-02 Thread Robert Kern
go to the wrong place too) Use --install-data=/usr/local . matplotlib will look in /usr/local/share/matplotlib . You will need to edit a line somewhere in basemap to look for data in /usr/local/share/basemap . It's better this way; trust me. -- Robert Kern [EMAIL PROTECTED] In the fields

Re: [Pythonmac-SIG] Apple's python extensions into Quartz2D

2005-05-31 Thread Robert Kern
Chris Barker wrote: Robert Kern wrote: I disliked the implementation (undocumented, closed source SWIG bindings are largely unusable), so I wrote my own using Pyrex. I call it, unimaginatively, ABCGI, A Better CoreGraphics Interface. It is part of Kiva, Enthought's graphics library, and has

Re: [Pythonmac-SIG] Apple's python extensions into Quartz2D

2005-05-27 Thread Robert Kern
it, unimaginatively, ABCGI, A Better CoreGraphics Interface. It is part of Kiva, Enthought's graphics library, and has served as ground truth for the other backends. When I get some time, I'll break it out as a separate package. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows

Re: [Pythonmac-SIG] donation

2005-05-24 Thread Robert Kern
the senders your financial information. Check the URLs of the links; they don't go to www.paypal.com. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac

Re: [Pythonmac-SIG] donation

2005-05-24 Thread Robert Kern
never saw. You mean like https://www.paypal.com/cgi-bin/webscr?cmd=xpt/general/SecuritySpoof-outside linked from the homepage? -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Clean Tiger install and Python 2.4.1

2005-05-10 Thread Robert Kern
bother unless you know that you need a particular battery, like Tix. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist

Re: [Pythonmac-SIG] py2app and CLI Python programs

2005-05-10 Thread Robert Kern
will usually have /some/path as the cwd. However, .app bundles are probably not what you want for CLI apps. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Spotlight and Python

2005-05-10 Thread Robert Kern
. And yes, I know grep -r will do it for me -- but the more ways to sift through data, the better. *cough* ctags *cough* http://ctags.sourceforge.net/ -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] mac newbie... Tix . What is wrong?

2005-05-06 Thread Robert Kern
-provided TclTkAqua installation does not come with Tix. I'm not sure, but you can try installing the Batteries Included version of TclTkAqua from http://tcltkaqua.sourceforge.net -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed

Re: [Pythonmac-SIG] problems with installing scipy on mac

2005-04-10 Thread Robert Kern
gnuplot does not start when i simply type 'gnuplot' in a terminal window i have to type 'usr/local/bin/gnuplot' for it to work. May these problem be related ?? Probably you don't have /usr/local/bin in your PATH environment variable. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass

[Pythonmac-SIG] ANN: MacEnthon 0.1

2005-04-10 Thread Robert Kern
://www.enthought.com/roundup/enthon/ I haven't gotten much feedback, so I can only assume that it's perfect. Barring anything particularly idiotic that I've done, I will probably only make one more final MacEnthon for Python 2.3.0. When I recover from that, I'll start thinking about 2.4.1. -- Robert Kern [EMAIL

Re: [Pythonmac-SIG] Python documentation in PythonIDE--for Lee Cullens

2005-04-05 Thread Robert Kern
Lee Cullens wrote: On Apr 5, 2005, at 1:01 AM, Robert Kern wrote: Lee Cullens wrote: I try not to get too far off on a tangent, but little things like this are good learning exercises and you have shortened the time it will take me to get through it. Allow me to shorten it further: Look

[Pythonmac-SIG] MacEnthon 0.0 testing release

2005-04-03 Thread Robert Kern
, please log it on the Enthon issue tracker and assign the issue to rkern: https://www.enthought.com/roundup/enthon/ Thank you all. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] MacEnthon 0.0 testing release

2005-04-03 Thread Robert Kern
Robert Kern wrote: I am pleased to announce the availability of MacEnthon 0.0! I should add that the disk image is 158 MiB large and that the installed files take up... I'm not actually sure, but it's under 700 MiB, I believe. Zip archives of individual packages will be available when I get

Re: [Pythonmac-SIG] MacEnthon 0.0 testing release

2005-04-03 Thread Robert Kern
Bob Ippolito wrote: On Apr 3, 2005, at 21:03, Robert Kern wrote: I am pleased to announce the availability of MacEnthon 0.0! MacEnthon is the OS X counterpart to the popular Enthought Edition of Python: a convenient bundling of a number of packages geared for the scientific community. Right now

Re: [Pythonmac-SIG] can't link Python 2.4.1 against external libxml2 ...

2005-04-03 Thread Robert Kern
: *** [frameworkinstallapps] Error 2 *something's* expecting libxml2 to be there ... I'll bet that it's either Cocoa or Carbon. In that case, you definitely *don't* want it to use your own libxml2. Leave it be. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves

Re: [Pythonmac-SIG] can't link Python 2.4.1 against external libxml2 ...

2005-04-03 Thread Robert Kern
*am* seeing, I guess I'll just have to wait and see when i get there =) Always a good idea. Don't fix it until it breaks. And it probably won't. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] can't link Python 2.4.1 against external libxml2 ...

2005-04-03 Thread Robert Kern
probably thinking of CoreFoundation. Ah, yes, you're right. Thank you. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG

Re: [Pythonmac-SIG] MacEnthon ...

2005-03-25 Thread Robert Kern
Bob Ippolito wrote: On Mar 25, 2005, at 1:45 PM, Robert Kern wrote: So I issue a challenge to the PythonMac masses: Write me an uninstaller. Standalone GUI is a plus, although I can live with a CLI script. For now, it only needs to be run by the intrepid testers. One ought to be able

Re: [Pythonmac-SIG] MacEnthon ...

2005-03-25 Thread Robert Kern
, I just target the stock 2.3.0 interpreter. When Python 2.4.1 gets released, I might target that as well. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter

Re: [Pythonmac-SIG] Having trouble installing Panther python packages

2005-03-24 Thread Robert Kern
there to disallow = 10.2 users from attempting an install). That is bizarre. I talked with him offlist. He didn't do the chmod on *all* of the InstallationCheck's in each of the sub-packages. Doing that fixed the problem. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high

Re: [Pythonmac-SIG] ANN: pygame 1.7.0 for Mac OS X 10.3

2005-03-19 Thread Robert Kern
fine. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves of dreams allowed to die. -- Richard Harter ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac

Re: [Pythonmac-SIG] package manager.

2005-02-22 Thread Robert Kern
http://www.python.org/packman/version-0.3/darwin-7.80- Power_Macintosh.plist. These package repositories are pretty much unmaintained now. An up-to-date Installer.app-type package is available thanks to Bob Ippolito. http://undefined.org/python/packages.html -- Robert Kern [EMAIL PROTECTED

[Pythonmac-SIG] Re: [Matplotlib-users] matplotlib OS-X binary problems.

2005-02-03 Thread Robert Kern
, libfreetype, and libz (I could probably resolve this by changing the order of search). I build matplotlib and double-check the dylib dependencies with otool -L. I do not bother with GTK at this time. -- Robert Kern [EMAIL PROTECTED] In the fields of hell where the grass grows high Are the graves

Re: [Pythonmac-SIG] pychecker

2005-01-03 Thread Robert Kern
Bob Ippolito wrote: On Jan 3, 2005, at 11:58 PM, Robert Kern wrote: Okay. At some point, that symlink got blown away on my machine, so I put in the install-*lib entries. fixing up the symlink now If that symlink got blown away, /Library/Python/2.3 shouldn't have ended up in sys.path (unless