up vote 3 down vote favorite
2
share [g+] share [fb]

The install instructions are:

$ python setup.py build
$ sudo python setup.py install # or su first

This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed library?

Thanks!

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

OK, I hate to answer my own question, but:

find your python site-packages (mine is /usr/local/lib/python2.5/site-packages )

then:

$ unzip MySQL_python-1.2.2-py2.5-linux-i686.egg

This worked fine for me

link|improve this answer
There's nothing wrong with answering your own question on here. As long as you're contributing to knowledge base it's a good thing. – idontwanttortfm Nov 24 '08 at 22:15
feedback

From the EasyInstall doc, command line options:

--always-unzip, -Z

Don't install any packages as zip files, even if the packages are marked as safe for running as a zipfile.

Can you use easyinstall instead of calling setup.py ?

calling easy_install -Z mysql_python from the command prompt, finds the egg on the net and installs it.

link|improve this answer
feedback

I'm a little late to this party, but here's a way to do it that seems to work great:

sudo python setup.py install --single-version-externally-managed --root=/

And then you don't use a .python-egg, any *.pth files etc.

link|improve this answer
feedback

This will tell setuptools to not zip it up:

sudo python setup.py install --single-version-externally-managed
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.