0
votes
1answer
106 views
How to install a module as an egg under IronPython?
Maybe, it is a stupid question but I can't use python eggs with IronPython.
I would like to test with IronPython 2.0.2 one module that I've developped. This modules is pure python. It works ok with …
0
votes
1answer
85 views
How to tell Buildout to install a egg from a URL (w/o pypi)
I have some egg accessible as a URL, say http://myhosting.com/somepkg.egg .
Now I don't have this somepkg listed on pypi. How do I tell buildout to fetch and install it for me.
I have tried a few …
1
vote
1answer
174 views
How do I deactivate an egg?
I've installed cx_Oracle (repeatedly) and I just can't get it to work on my Intel Mac. How do I deactivate/uninstall it?
0
votes
1answer
92 views
How do I load entry-points for a defined set of eggs with Python setuptools?
I would like to use the entry point functionality in setuptools.
There are a number of occasions where I would like to tightly control the list of eggs that are run, and thence the extensions that …
1
vote
2answers
296 views
Python eggs: how can I force setuptools to use manually installed packages and don’t install them again from internet?
I have a problem with setuptools. I have many packages installed without setuptools, e.g. docutils, PIL, django.
But when I'm trying to install some other package that require setuptools, it tries …
1
vote
1answer
54 views
What causes ZipImportError exceptions while installing eggs from the web?
I'm working on an automatic testing framework which installs eggs downloaded directly from the web-server. From time to time I get a very long stacktrace leading to a ZipImportError (see the pastebin …
1
vote
1answer
407 views
Python packages and egg-info directories
Can someone explain how egg-info directories are tied to their respective modules? For example, I have the following:
/usr/local/lib/python2.5/site-packages/quodlibet/
…
6
votes
4answers
824 views
Python Code Organization Question : Eggs + Packages + Buildout + Unit Tests + SVN
I have several python projects that share common modules. Until now, I've been ... ahem ... keeping multiple copies of the common code and synchronizing by hand. But I'd clearly prefer to do something …
