On Sat, Dec 20, 2008 at 3:40 PM, R. Ellsworth Pollard
wrote:
> Where might I find instructions for compiling Python on Leopard?
If your goal is just to install Python, there is now a Mac installer available.
http://www.python.org/download/releases/2.6.1/
If you really want to build, download the
"R. Ellsworth Pollard" wrote in message
news:d52d80370812201240te2d4abby16a7b7745768b...@mail.gmail.com...
Where might I find instructions for compiling Python on Leopard?
Have you tried the Mac mailing list or the MacPython web site?
I expect the procedure to be the same as for previous ve
On Thu, Jun 19, 2008 at 7:11 AM, Sean Novak <[EMAIL PROTECTED]> wrote:
> missed answering that last part before I sent the email.
>
> import urllib
> import libxml2dom
> import xml.dom.ext
urllib is part of the standard lib. Perhaps you could replace the xml
libs with something that is in the stan
On Wed, Jun 18, 2008 at 11:29 PM, Sean Novak <[EMAIL PROTECTED]> wrote:
> Hello Python Guru's and Newbies alike. I've been able to write a bit of
> Python for a web app that works wonderfully on my dev machine. However, I
> have limited access to the machine that will actually host this app. Wil
I think what you are looking for is:
http://pyinstaller.python-hosting.com/
Best,
Miguel
___
Sabe qual e o credito pessoal MAIS FACIL DE PAGAR no futuro?
Aquele em que as PRESTACOES DESCEM ao longo do emprestimo?
"Stevie Broadfoot" <[EMAIL PROTECTED]> wrote
> what is a good program to make an executable for all platforms.
I'm not totally clear what you are expecting here.
Python scripts are executable on all platforms as they stand,
you just need the appropriate interpreter to be installed.
Much like
That would be the compileall utility:
http://www.python.org/doc/2.4.1/lib/module-compileall.html
Cheers
Bernard
On 7/1/05, Johan Geldenhuys <[EMAIL PROTECTED]> wrote:
> Hi all,
> I have python .py files that I want to compile into .pyc files.
> Is there a easy way of doing this?
>
> Thank