A python egg is a file used for distributing python projects as bundles; it is usually compressed with the zip algorithm. Egg files normally include some metadata; the file extension is ".egg". The concept is very similar to a Java .jar file.
1
vote
0answers
16 views
Open documentation via Python script from egg file in Windows
I have written a setup.py for a Python project. In the python script the documentation (e.g. html) can be opened from the script. The documentation file is added in the setup.py as data_files (so it ...
0
votes
1answer
78 views
How to deploy django server into production environment without a full source code?
I am still a newbie to Python and Django. I am developing a application using Django which will eventually go to the production server. It's a customized web application for the client. After doing ...
0
votes
1answer
53 views
Faking an egg in buildout from a github repository
I want to try this middleware in a Django project I'm working on: https://github.com/directeur/django-pdf. It goes by the name "django-pdf", but is not the same as ...
0
votes
1answer
34 views
python building egg but nothing happens
I'm trying to build an egg with my app, but it doesn't work.
I have easy_installed on my machine.
In the folder with app I created file setup.py with this content:
from setuptools import setup
...
0
votes
1answer
146 views
pylab troubles with EPD version of ipython
I recently switched to the EPD version of ipython (I have the 64-bit student edition), and now I'm having trouble with pylab. When I type "import pylab" it gives me the following error
ImportError ...
1
vote
1answer
33 views
Upload package without source to pypi repo
Apologies if this has been asked before but I couldn't for the life of me find an answer to what seems (to me) like a very basic question.
I have a set of .egg packages that do not contain the source ...
2
votes
1answer
140 views
What is PasteDeploy and do I need to learn it if Eggs in Python are considered gone?
I'm quite new to Python. I've downloaded the Pyramid Framework and have been trying to understand it. It uses many separate tools for its work. For example some PasteDeploy. I tried to read ...
1
vote
1answer
93 views
Import egg functionality during setup in a buildout
The setup.py file in a package I maintain, uses code from another package to build extensions:
from setuptools import setup, find_packages
from mydependence import build_ext
...
setup(
...
0
votes
1answer
99 views
Scrapyd deploy “Attribute Error: NoneType object has no attribute 'module_name'”
I'm trying to using scrapy to deploy my crawler project to a scrapyd instance but calling the commend returns the following error:
Server response (200): {"status": "error", "message": ...
0
votes
2answers
94 views
custom django management command not working when deployed as egg
I've made a little django app, only one management command, which is packaged into an egg.
If I unzip the egg into a blank django project, add it to installed_apps, the management command works.
...
0
votes
0answers
89 views
Python Setuptools/setup.py Install Upstart Configuration
Is there an elegant way to have setuptools deposit and install an Upstart configuration, or should I just do it from a custom pre-hook (cmdclass)?
Can Setuptools be used to install files in arbitrary ...
1
vote
0answers
49 views
How do I include a tarball or svn dependency in setup.py?
I have a project that has python-xlib as a requirement. Unfortunately python-xlib is not on pypi, so in my requirements file I use:
...
0
votes
1answer
74 views
Running Python from PHP
I have a python script that runs as a daemon process. I want to be able to stop and start the process via a web page. I made a PHP script that runs exec() on the python daemon. Any idea?
...
0
votes
0answers
162 views
Permission denied while installing package …sudo doesnt seem to work [closed]
I have a setup script and I do the following actions
1)python setup.py clean (works fine)
2)python setup.py build (works fine)
3)python setup.py install (doesnt work)
Initially it says -
...
2
votes
2answers
124 views
What are the benefits and downsides of using the Python packaging *.egg format over a simple directory with setup.py?
When I release a program, I usually just create a setup.py and put it on pypi. It's installable with pip, I can always share it easily with others. It works for me, and apparently for a lot of people.
...
0
votes
0answers
78 views
Specify extra egg-directory entries in buildout
We use a set of python eggs which are maintained by somebody else and installed in a read-only directory:
/shared/directory/packageA-0.11.3-py2.6-linux-x86_64.egg
...
7
votes
3answers
358 views
How to compare “version-style” strings
I am walking a directory that contains eggs to add those eggs to the Pythonpath (sys.path). If there are two versions of the same .egg in the directory, I want to add only the latest one.
I have ...
2
votes
2answers
181 views
Python - running script is in an egg?
i created an executable egg to make it as an single file executable.
setup.py:
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='app',
version='0.5',
...
0
votes
1answer
65 views
How do I add Django-dev from pip to site-packages?
I installed Django with
C:\Python27\Lib\site-packages>pip install -e git+https://github.com/django/django.git#egg=django
Unfortunately some programs (such as PyDev), work "easier" when your ...
5
votes
1answer
122 views
What's the proper way to update Python packages when updating Python from 2.6 to 2.7?
I've installed A LOT of python packages for Python 2.6. Now I would like to upgrade Python to 2.7. Is there a proper or systematic way to update all the installed packages?
In my system, all the ...
0
votes
2answers
586 views
Celery error: “No module named billiard.forking” - how to diagnose?
I have no idea where to start diagnosing and fixing this:
$ bin/django celeryd -l DEBUG -v 3
-------------- celery@lucid32 v3.0.3 (Chiastic Slide)
---- **** -----
--- * *** * -- [Configuration]
...
1
vote
1answer
183 views
Including direct dependency download links in setup.py
Can one specify direct download links for Python egg dependencies?
I have Skype4Py as a dependency and easy_install seems to fail to download the file correctly from sourceforge.net (sourceforge.net ...
1
vote
1answer
71 views
What is difference in buildout between eggs and parts?
There is 2 directories when you work with buildout: eggs and parts. Also there are declarations of eggs and parts in buildout.cfg. What is purpose of those elements of buildout system?
1
vote
1answer
35 views
What to do with the test/docs/readme files after the downloaded python package is built?
Sorry about the nooby question, but, when I download and unzip a third-party python package, and then python setup.py install it thereby making an egg directory in site-packages, what do I do with the ...
0
votes
1answer
96 views
How to Enter Text in the Text Field using Sense Talk and Eggplant?
I am new to Egg plant.
I need to enter the user name on the username field. I used the below code. But TypeText is not enter the text on the Username Field
Click "TxtField_Username"
TypeText ...
0
votes
2answers
49 views
How do I “semi install” a plugin that is normally installed as an egg, using setup.py develop?
I am trying to debug a plugin issue with Trac and TracMercurial. The plugin does not quite work for me when packaged as an egg and deployed normally.
Using setup.py develop results in plugin not ...
3
votes
1answer
120 views
How to deploy a python project to an environment that has not install some third-party libraries?
I have a project that using some third-party libraries. My questions is how to deploy my project to an environment that has not install these third-party libraries. In Java, I can just put all jars in ...
3
votes
2answers
115 views
How can I exclude files in my .gitignore when packaging a Python egg?
I'm packaging my first Django app and I want to leave out my settings_local.py file from the egg. Ideally I'm looking for a way to just have everything in my .gitignore file also excluded from the ...
3
votes
1answer
126 views
After running paster, I have a few eggs in my product
I just ran
bin/paster create -t dexterity my.example
After running it, I have the following:
bootstrap.py
docs
my.example.egg-info
PasteDeploy-1.5.0-py2.6.egg
plone.cfg
setup.cfg
...
0
votes
1answer
284 views
Why doesn't mr.developer install my package dependencies?
I'm using mr.developer with buildout for a project, but it doesn't install the eggs listed in my development packages' install_requires. What am I doing wrong?
setup.py for the project:
...
3
votes
2answers
91 views
How to distribute a Python package that adds an executable to the path?
I have a bunch of commands that I want to distribute to my colleagues. They want me to package it and add it to their path (/usr/local/bin)
How would I do this? We already have a Python repository. ...
1
vote
2answers
819 views
Easy_install's --prefix option doesn't change where it tries to install my package
I want to install Sphinx 1.1.3 for python 2.6. However, I don't have sudo rights. So instead of installing it in the default place, I want to set a different location, using --prefix. Doing the ...
0
votes
0answers
32 views
package existing egg into other egg using setup tools
my python project depends on a third-party egg, and i don't want this egg to be installed in my python environment. I can execute my code by adding this egg to my PYTHONPATH at run time, it works ...
0
votes
2answers
131 views
How to install specific .egg pieces with easy_install
I am trying to install ZODB on a new machine. I would like to match the same installation I have on another machine (the newest ZODB does not install correctly with easy_install). I have the ...
1
vote
2answers
205 views
How to use SQLAlchemy reflection with Sybase? [answer: turns out it's not supported!]
I'm trying to learn more about the .egg concept and overriding methods in Python. Here's the error message I'm receiving:
Traceback (most recent call last):
File ...
0
votes
3answers
218 views
How to package a runnable python program in 1 file
I'm planning to package my large python program into a single file;
My requirements are:
only 1 file to download
file can be checksummed
ideally file contains some version info
uses system python
...
1
vote
0answers
25 views
Trace egg-info from renamed reallocated python package
Using
pip install django-compressor
I can install this app, it gets unpackaged in /lib/whatever/compressor
and there is a /lib/django_compressor-1.1.2.egg-info. By looking at file inside the ...
1
vote
2answers
92 views
Automating eggifying of old Plone products
Does anyone know a script which would wrap old Products namespace style Plone add-on to an egg?
Generate setup.py
Create directory structure
Other actions needed?
Any pitfalls in the eggifying ...
7
votes
4answers
283 views
What are the best practices for creating Python Distributions(eggs) on(and for) Multiple Operating Systems
Ours is a python shop. We have different python packages developed inhouse and will be deployed onto customers' environments(machines).
This is how our development and release cycle happens.
Once ...
3
votes
2answers
544 views
Can Launch4J be set so that the exe files it creates cannot show its contents through zip/egg/rar file when right click on/ open with it?
Launch4J is a jar to exe converter. I used Launch4J to convert jar to exe but when I right click on that exe file Launch4J created, it shows the contents in the jar file (class, etc files) from which ...
0
votes
1answer
5k views
how to get setuptools and easy_install
I downloaded the ez_setup code from here: http://peak.telecommunity.com/dist/ez_setup.py
and ran it, but i don't think setuptools was properly installed. When i try to open an egg using easy_install i ...
1
vote
0answers
100 views
How to share platform dependent python packages using source control?
Currently we keep project related python packages in a subversion directory, so when someone adds or removes one it will directly be available to others.
Still, this method works well with Python ...
0
votes
1answer
264 views
How to build Python Eggs for Android SL4A?
Does anyone have any tutorial on How I should go about building a Python Egg for installing it in my android phone ? I want to install the library - Hachoir ...
2
votes
2answers
576 views
How to distribute / access data files in Python egg?
I'm writing a Django application that is using pip & virtualenv to manage its development environment.
One of the dependencies, pkgme, comes with many data files which are its "backends" and are ...
-1
votes
1answer
265 views
What is a Python egg [duplicate]
Possible Duplicate:
What is a Python egg?
Noob here.
I would like to understand how installing modules works better and found a lot of .egg files in sitepackages.
Are they like installers ...
1
vote
1answer
92 views
Python eggs and module as plugin
I have these eggs:
~/test/lib/
├── a-1.0-py2.7.egg
│ ├── a
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ └── EGG-INFO
│ └── ...
├── a.b-1.0-py2.7.egg
│ ├── a
│ │ └── b
│ │ ...
0
votes
2answers
241 views
How to use pip install where one requirement has dependency on version on gcc-4.5
I am installing an egg packaged for pip, inside my virtualenv, under Python 2.7.2.
The egg has 16 requirements, one of which (pycryptopp 0.5.29) is known to fail with gcc-4.6 and hence must be ...
0
votes
2answers
65 views
zc.buildout is using the wrong python
I'm using zc.buildout to generate a script called "test". I'm using that script to call my own test runner. (The available test runners for buildout do not yet use the new "discovery" feature in ...
1
vote
1answer
541 views
ImportError; and zipimporters disappeared from pkgutil.iter_importers()
I have a Django instance that's mysteriously incapable of import memcache ... after (some unknown event that happens after a period of running just fine.)
LAMP configuration:
RHEL 5.7
Apache 2.2.3
...
4
votes
1answer
3k views
Why does pip fail when installing local egg repository?
I am working on Windows 7.I have created a python egg using distutils. Now I try to install this egg in a virtual environment using pip 1.0.2 using the following command:
Then I create a virtual ...

