Tagged Questions

Setuptools builds on Python’s distutils to provide easier building, distribution, and installation of libraries and applications.

learn more… | top users | synonyms

106
votes
11answers
39k views

How do I remove packages installed with Python's easy_install?

Python's easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing ...
91
votes
5answers
8k views

Why use pip over easy_install?

A tweet reads: Don't use easy_install, unless you like stabbing yourself in the face. Use pip. Why use pip over easy_install? Doesn't the fault lie with PyPI and package authors mostly? If ...
69
votes
13answers
33k views

How to setup setuptools for python 2.6 on Windows?

Is there any way to install setuptools for python 2.6 in Windows without having an .exe installer? There isn't one built at the moment, and the maintainer of setuptools has stated that it's probable ...
45
votes
4answers
15k views

How to install pip on windows?

The python software pip is a replacement for *easy_install*. But I will install pip using easy_install on Windows. Is there a better way? Edit: This also seems to work: Download the last easy ...
28
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 ...
21
votes
3answers
9k views

Installing SetupTools on 64-bit Windows

I'm running Python 2.7 on Windows 7 64-bit, and when I run the installer for setuptools it tells me that Python 2.7 is not installed. The specific error message is: `Python Version 2.7 required ...
14
votes
3answers
575 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 ...
13
votes
2answers
4k views

Questions about Setuptools and alternatives

I've seen a good bit of setuptools bashing on the internets lately. Most recently, I read James Bennett's On packaging post on why no one should be using setuptools. From my time in #python on ...
12
votes
6answers
1k views

How can I get the version defined in setup.py (setuptools) in my package?

How could I get the version defined in setup.py from my package? (for --version, or other purposes) thanks!
12
votes
2answers
1k views

“setup.py upload” is failing with “Upload failed (401): You must be identified to edit package information”

When running.. python setup.py sdist register upload ..I get the following output: running register We need to know who you are, so please choose either: 1. use your existing login, 2. register ...
12
votes
9answers
6k views

Python Daemon Packaging Best Practices

I have a tool which I have written in python and generally should be run as a daemon. What are the best practices for packaging this tool for distribution, particularly how should settings files and ...
11
votes
2answers
185 views

What is the best way to distribute a Python package that requires a minimal Python version

I have a Python 2 project ('foo 0.1.7') that required Python 2.4 or later. Now I ported it to Python 3 ('foo 0.2.0') in a way that it still is compatible with Python 2, but the requirements are now ...
10
votes
1answer
242 views

Distributing a large Python-enabled application: best practices

There is a large Python application that consists of numerous third-party packages and binary libraries. Here is an overview of my requirements: Cross-platform (currently Windows and modern Linux ...
9
votes
2answers
2k views

How can I make setuptools install a package that's not on PyPI?

I've just started working with setuptools and virtualenv. My package requires the latest python-gearman that is only available from GitHub. The python-gearman version that's on PyPI is an old one. The ...
9
votes
2answers
952 views

How do I install an old version of Django on virtualenv?

This may sound like a stupid question, since the very purpose of virtualenv is to this exactly: Installing some specific version of a package (in this case Django) inside the virtual environment. But ...
9
votes
3answers
2k views

Explain Python entry points?

I've read the documentation on egg entry points in Pylons and on the Peak pages, and I still don't really understand. Could someone explain them to me, or point me at an article or book that does?
8
votes
5answers
690 views

Using easy_install inside a python script?

easy_install python extension allows to install python eggs from console like: easy_install py2app But is it possible to access easy_install functionality inside a python script? I means, without ...
8
votes
1answer
4k 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/ ...
7
votes
2answers
135 views

Create different distribution types with setup.py

Given the following (demonstration) project layout: MyProject/ README LICENSE setup.py myproject/ ... # packages extrastuff/ ... # some extra data How (and ...
7
votes
0answers
80 views

Adding man pages to a Python egg [closed]

Possible Duplicate: Python: Installing man pages in distutils based project I have a Python package which is a collection of scripts. Each script comes with its own command-line syntax, and ...
7
votes
1answer
497 views

Python package structure, setup.py for running unit tests

I'm not sure I'm organizing my package structure correctly or am using the right options in setup.py because I'm getting errors when I try to run unit tests. I have a structure like this: /project ...
7
votes
4answers
3k views

Ubuntu + virtualenv = a mess? virtualenv hates dist-packages, wants site-packages

Can someone please explain to me what is going on with python in ubuntu 9.04? I'm trying to spin up virtualenv, and the --no-site-packages flag seems to do nothing with ubuntu. I installed virtualenv ...
7
votes
2answers
325 views

Combined Python & Ruby extension module

I have a C extension module for Python and I want to make it available to Rubyists. The source has a number of C modules, with only one being Python-dependent. The rest depend only on each other and ...
7
votes
2answers
2k views

How can I add post-install scripts to easy_install / setuptools / distutils?

I would like to be able to add a hook to my setup.py that will be run post-install (either when easy_install'ing or when doing python setup.py install). In my project, PySmell, I have some support ...
6
votes
2answers
111 views

Install local extras in Python

setup.py of my package X uses setuptools to optionally install an extra package Y, via the extras_require parameter. Now package Y disappeared from PyPi and, as far as I can tell, from the visible ...
6
votes
3answers
769 views

setuptools: package data folder location

I use setuptools to distribute my python package. Now I need to distribute additional datafiles. From what I've gathered fromt the setuptools documentation, I need to have my data files inside the ...
6
votes
1answer
1k views

Can Pip install dependencies not specified in setup.py at install time?

Hi all I'd like pip to install a dependency that I have on GitHub when the user issues the command to install the original software, also from source on GitHub. Neither of these packages are on PyPi ...
6
votes
1answer
689 views

Python packages installation in Windows

I recently began learning Python, and I am a bit confused about how packages are distributed and installed. I understand that the official way of installing packages is distutils: you download the ...
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 ...
6
votes
5answers
1k views

How can I make setuptools ignore subversion inventory?

When packaging a Python package with a setup.py that uses the setuptools: from setuptools import setup ... the source distribution created by: python setup.py sdist not only includes, as usual, ...
6
votes
2answers
2k views

python setup.py develop not updating easy_install.pth

According to setuptools documentation, setup.py develop is supposed to create the egg-link file and update easy_install.pth when installing into site-packages folder. However, in my case it's only ...
5
votes
2answers
148 views

Installing ScientificPython as a dependency

I am trying to list ScientificPython as a dependency in my setup.py. However, during the installation process, python seems to not find the package. What is wrong in my approach? Here is my setup: ...
5
votes
2answers
368 views

Automatic version number both in setup.py (setuptools) AND source code?

SITUATION: I have a python library, which is controlled by git, and bundled with distutils/setuptools. And I want to automatically generate version number based on git tags, both for setup.py sdist ...
5
votes
11answers
559 views

What is the official “preferred” way to install pip and virtualenv systemwide?

Is it this, which people seem to recommend most often: $ sudo apt-get install python-setuptools $ sudo easy_install pip $ sudo pip install virtualenv Or this, which I got from ...
5
votes
4answers
6k views

Installing Python-2.7 on Ubuntu 10.4

I can't seem to install zlib properly, I installed Python from source on Ubuntu10.4 '######## edit ##################### bobince and Luper helped. Make sure you install these packages and then ...
5
votes
1answer
259 views

How to easy_install egg plugin and load it without restarting application?

I'm creating an app that downloads and installs its own egg plugins, but I have a problem loading the egg after easy_install extracts it into place. This is how it works now: App downloads egg into ...
5
votes
1answer
10k views

Python setuptools import error (Using NetBeans)

I tried to find a question that would answer to this question but wasn't succesful, so I made a new question. I'm trying to compile my old Python Tic Tac Toe game in NetBeans, but I get the error ...
5
votes
2answers
820 views

Problem installing OpenERP server with buildout !

I'm trying to deploy OpenERP with a buildout and my own piece of code. In fact I would like to build a complete deployement structure allowing me to use OpenERP with custom modules and patch. First ...
5
votes
2answers
416 views

Which is the most pythonic: installing python modules via a package manager ( macports, apt) or via pip/easy_install/setuptools

Usually I tend to install things via the package manager, for unixy stuff. However, when I programmed a lot of perl, I would use CPAN, newer versions and all that. In general, I used to install ...
5
votes
3answers
519 views

How do I forbid easy_install from zipping eggs?

What must I put into distutils.cfg to prevent easy_install from ever installing a zipped egg? The compression is a nice thought, but I like to be able to grep through and debug that code. I pulled in ...
5
votes
3answers
407 views

What's the right way to use Unicode metadata in setup.py?

I was writing a setup.py for a Python package using setuptools and wanted to include a non-ASCII character in the long_description field: #!/usr/bin/env python from setuptools import setup setup(... ...
4
votes
2answers
53 views

How to pass flags to a distutils extension?

I'm trying to install a Python module that contains C modules. The C code relies on a library being available in the system's global install locations (/usr/include, /usr/lib), but in my case I only ...
4
votes
1answer
913 views

No module named pkg_resources

I'm deploying a Django app to a dev server and am hitting this error when i run pip install requirements.txt: Traceback (most recent call last): File "/var/www/mydir/virtualenvs/dev/bin/pip", line ...
4
votes
1answer
77 views

Find where dependencies are coming from in Python?

When I run pip install . I get all dependencies installed, including transitive dependencies, but the problem is that there are two modules that depend on two different versions of lxml. How can I ...
4
votes
1answer
133 views

best tool for building python distro with dependencies/resources

So I've been working on a python project and reached the point that I have to make some kind of installer/distribution. Now this project has quite a lot of dependencies and some resources. So far I'm ...
4
votes
5answers
514 views

Python - Is there any way to get pip without setuptools?

Seems kinda weird that they'd require a package manager to install a package manager. I'm on Windows BTW.
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
2answers
299 views

Install two python modules with same name

What's the best way to install two python modules with the same name? I currently depend on two different facebook libraries: pyfacebook and Facebook's new python-sdk. Both of these libraries install ...
4
votes
1answer
214 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 ...

1 2 3 4 5 6