Tagged Questions
29
votes
4answers
1k views
Differences between distribute, distutils and setuptools?
I'm trying to port an open-source library (SymPy, if anyone is wondering) to Python 3. To do this, I need to run 2to3 automatically when building for Python 3. To do that, I need to use distribute, ...
25
votes
5answers
4k views
What's the proper way to install pip, virtualenv, and distribute for Python?
Short Question
What is the proper way to install pip, virtualenv, and distribute?
Background
In my answer to SO question 4314376, I recommended using ez_setup so that you could then install pip ...
17
votes
5answers
1k views
State of Python Packaging: Buildout, Distribute, Distutils, EasyInstall, etc
The last time I had to worry about installing Python packages was two years ago working with Enthought, NumPy and MayaVi2. That experience gave me lingering nightmares related to quirky behavior ...
14
votes
3answers
580 views
How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?
The Twisted Plugin System is the preferred way to write extensible twisted applications.
However, due to the way the plugin system is structured (plugins go into a twisted/plugins directory which ...
9
votes
3answers
152 views
automatically update python script
TL;DR I need a module which will automatically update my script in the background, silently.
I'm have a Python script which I distribute to users. I frequently update this, and then ask them to ...
8
votes
2answers
755 views
How do you correct Module already loaded UserWarnings in Python?
Getting the following kinds of warnings when running most python scripts in the command line:
/Library/Python/2.6/site-packages/virtualenvwrapper/hook_loader.py:16: UserWarning: Module
...
6
votes
1answer
76 views
How do distribute and pip relate to one another?
I've been teaching myself Python through the book "Learn Python The Hard Way" (2nd Edition). In exercise 46 it told me to read up on Pip, Distribute, and a few other packages.
The documentation for ...
6
votes
2answers
1k views
Why does the python-pip yum package provide pip-python instead of pip?
I installed python-pip package via yum (Fedora's updates repo). It does not add the pip script to my PATH though.
$ which pip
/usr/bin/which: no pip in ...
6
votes
1answer
1k views
“UserWarning: Unbuilt egg for setuptools” - What does this actually mean?
When I install things into a virtualenv using pip I often see the message "UserWarning: Unbuilt egg for setuptools". I always safely ignore it and go about my business and it doesn't seem to cause me ...
4
votes
1answer
339 views
Does pip handle extras_requires from setuptools/distribute based sources?
I have package "A" with a setup.py and an extras_requires line like:
extras_require = {
'ssh': ['paramiko'],
},
And a package "B" that depends on util:
install_requires = ['A[ssh]']
If I ...
4
votes
1answer
216 views
What's the best layout for a python command line application?
What is the right way (or I'll settle for a good way) to lay out a command line python application of moderate complexity? I've created a python project skeleton using paster, which gave me a few ...
4
votes
2answers
1k views
PIP: Installing only the dependencies
I have a script that creates a virtualenv, installs distribute and pip in it and then optionally clones a git repo.
Now I have the project I will be working on, installed. But its dependencies are ...
4
votes
2answers
239 views
How do I get started with zc.buildout and Distribute?
I want to use buildout for dependency management, and I hear distribute is the new good way to manage installation of your project.
However, easy tutorials to get started seem to be thin on the ...
4
votes
1answer
1k views
Packaging resources with setuptools/distribute
I'm developing an Python egg that has several .txt dependencies (they're templates used to generate files by the egg itself), and I'm struggling to get those dependencies copied to site-packages ...
3
votes
1answer
45 views
Multiple installation configurations for a Python package
I'm working on creating a Python package that is somewhat modular in nature and I was wondering what's the best way to go about handling multiple installation configurations?
Take the following ...
3
votes
2answers
122 views
How to include package data with setuptools/distribute?
When using setuptools/distribute, I can not get the installer to pull in any package_data files. Everything I've read says that the following is the correct way to do it. Can someone please advise?
...
3
votes
1answer
286 views
When to use pip requirements file versus install_requires in setup.py?
I'm using pip with virtualenv to package and install some Python libraries.
I'd imagine what I'm doing is a pretty common scenario. I'm the maintainer on several libraries for which I can specify ...
3
votes
1answer
73 views
What is the recommended way to generate and copy some files to arbitrary places in a setup.py?
I have a PyQT KDE application and I need to generate some files(with pyuic and pyrcc commands) and copy some files(.desktop) to some places(ie /usr/share/applications/kde4/). What are preferred ways ...
3
votes
1answer
76 views
Pip: Specifying minor version
In my requirements.txt file I want to specify that my app needs Django version 1.3.x. That is, either 1.3.0, or 1.3.1, or 1.3.2, etc. (When these come out.) But not 1.4, when it comes out.
What's the ...
3
votes
1answer
292 views
How do I use data in package_data from source code?
In setup.py, I have specified package_data like this:
packages=['hermes'],
package_dir={'hermes': 'hermes'},
package_data={'hermes': ['templates/*.tpl']},
And my directory structure is roughly
...
3
votes
3answers
182 views
Distributing python code with virtualenv?
I want to distribute some python code, with a few external dependencies, to machines with only core python installed (and users that unfamiliar with easy_install etc.).
I was wondering if perhaps ...
3
votes
1answer
669 views
Why does “python setup.py sdist” create unwanted “PROJECT-egg.info” in project root directory?
When I run
python setup.py sdist
it creates an sdist in my ./dist directory. This includes a "PROJECT-egg.info" file in the zip inside my "dist" folder, which I don't use, but it doesn't hurt me, ...
2
votes
0answers
35 views
python packages: how to depend on the latest version of a separate package
I'm developing coding a test django site, which I keep in a bitbucket repository in order to be able to deploy it easily on a remote server, and possible share development with a friend. I use hg for ...
2
votes
1answer
79 views
easy_install with pypy while Python is installed
I installed PyPy while still having Python 2.7 on my system.
How do I install and then use easy_install with PyPy?
What is the syntax for distinguishing where I want to install to with easy_install?
...
2
votes
0answers
80 views
installing a Python package source tarball with pip
I'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating a test project with the setup.py file described on ...
2
votes
1answer
59 views
Running `chmod` after installing a package using `setup.py`
Let's assume I have a package which calls an executable file somewhere in the code (for example a third-party c/java-program). Let's further assume, the application is small/trivial enough to bundle ...
2
votes
1answer
247 views
How can I correctly install multiple non-package Distribute/virtualenv/pip ecosystems on Ubuntu?
I am developing Python applications in Ubuntu. I want to setup a Distribute/virtualenv/pip ecosystem to manage my Python packages independently of any system Python packages (which I manage in ...
2
votes
2answers
164 views
How do I make VirtualEnv use a custom version of setuptools?
The large corporation that I work for uses a custom version of Setuptools. This private fork of setuptools is intended to deal with certain networking and security difficulties that are unique to our ...
2
votes
2answers
1k views
Confusing Python install in user local (virtualenv, pip, distribute)
I tried to install python below way. But this did not work.
This take "error: bad install directory or PYTHONPATH".
What's the proper way to install pip, virtualenv, and distribute for Python?
...
2
votes
1answer
78 views
Is there a method to find out if a package is to be installed with distutils instead of setuptools?
I can look inside setup.py I suppose to see if it's a distutils package. But in the process of familiarizing myself with python package management I have noticed that there seems to be more than one ...
2
votes
1answer
441 views
Use distribute/setuptools to create symlink (or run script)?
As part of my project's setup process, I need to symlink one of the packages to a specified directory so an init.d script can find it. Is there any way to add this as a post-processing command to ...
2
votes
2answers
210 views
Including package data with Distribute
I'm trying to use Distribute for my project's setup.py. I want it to include all the files in the package folder, which are text and image files, but not .pyc files of course. I read that the files ...
2
votes
3answers
1k views
Introduction/tutorial to `pkg_resources`
I heard about Distribute's pkg_resources. I want it to organize resources such as images in my project. Is there a good tutorial on how to use it?
1
vote
2answers
221 views
Installing my sdist from PyPI puts the files in unexpected places
My problem is that when I upload my Python package to PyPI, and then install it from there using pip, my app breaks because it installs my files into completely different locations than when I simply ...
1
vote
2answers
884 views
unable to use pip with Python 3.2 using distribute
After installing python3.2 from src, I tried running:
curl -O http://python-distribute.org/distribute_setup.py
sudo python3.2 distribute_setup.py
sudo python3.2 -m easy_install pip
sudo python3.2 -m ...
1
vote
2answers
126 views
How to package example scripts using distribute?
I use distribute to package a small python library. I made a directory structure as described in the Hitchhiker's Guide to Packaging.
My question: Where (in the directory structure) do I place an ...
1
vote
2answers
794 views
Howto install distribute for Python 3
I am trying to install distribute using ActivePython 3.1.2 on Windows.
Running python distribute_setup.py as described on the cheese shop give me:
No setuptools distribution found
running ...
1
vote
3answers
240 views
paster errors after installing distribute 0.6.10
Been working on a Plone site for the last few weeks, it's the first time I've worked on one using buildout for recipes and paster for template generation, and it's been a learning curve.
two days ...
0
votes
2answers
52 views
Installing Python and Distribute on Windows 7 gives “Writing failed … permission denied”
I'm on Windows 7 (which I fully admit I don't understand the permissions model of. I'm reading about it in other tabs.) My user is an administrator. When I try to run "python distribute_setup.py" I ...
0
votes
0answers
53 views
python distribute sdist causing git pre-commit hook issues
I have a git pre-commit hook that does the following:
python setup.py sdist
Running
git commit SOME_FIILE
cause all the files in the git repo to show in commit message as "Changes not staged ...
0
votes
2answers
48 views
How do I install a user-specific configuration file with the distribute python
I'm creating a python package, and using distribute to package it as an egg. I'd like to install a user-editable configuration file for each user of my software. What is the best way to accomplish ...
0
votes
2answers
179 views
Specifying where to install 'tests_require' dependecies of a distribute/setuptools package
When I run 'python setup.py test' the dependencies listed in 'tests_require' in setup.py are downloaded to the current directory. I would like to have those dependencies installed in site-packages, ...
0
votes
1answer
77 views
How to add a post-install function with distribute?
I'm trying to build a source distribution package with distribute which should include a post-install method being called after the install is finished.
I tried this distutils solution but that leads ...
0
votes
2answers
201 views
Has anybody been able to install PyWeka?
I need to install in python 2.6 or 2.7 for windows the library PyWeka0.3dev, It says it requires setuptools, which I installed but then they told me it was a deprecated instalation library and I ...
0
votes
1answer
162 views
Is it possible to make eggs with a None zip-safe flag default to being instaleld zipped with Distribute?
Our large python project is being upgraded from using the legacy "setuptools" project to use "distribute" as a drop-in replacement.
We've noticed one problematic difference between the two ...
0
votes
1answer
164 views
Python: Permission issue when installing an egg
Tried installing South sitewide with easy_install. However I'm having permission issues:
drwxr-x--- 2 root root 4096 Nov 8 10:23 South-0.7.2-py2.6.egg-info
I then tried installing it with pip ...