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!
|
feedback
|
|
OK, I hate to answer my own question, but: find your python site-packages (mine is /usr/local/lib/python2.5/site-packages ) then:
This worked fine for me | |||
feedback
|
|
From the EasyInstall doc, command line options:
Can you use easyinstall instead of calling setup.py ? calling | ||||
|
feedback
|
|
I'm a little late to this party, but here's a way to do it that seems to work great:
And then you don't use a .python-egg, any *.pth files etc. | |||
|
feedback
|
|
This will tell setuptools to not zip it up:
| |||
|
feedback
|