Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
44
votes
6answers
15k views

python setup.py uninstall

I have installed a python package with python setup.py install. How do I uninstall it?
15
votes
4answers
2k views

Why does pip install matplotlib version 0.91.1 when PyPi shows version 1.0.0?

PyPi shows matplotlib 1.0.0. However, when I install matplotlib via pip into a virtualenv, version 0.91.1 is installed. Why the difference in versions? Is there a way to pip install matplotlib ...
13
votes
3answers
277 views

Do I have any obligations if I upload an egg to the CheeseShop?

Suppose I'd like to upload some eggs on the Cheese Shop. Do I have any obligation? Am I required to provide a license? Am I required to provide tests? Will I have any obligations to the users of this ...
11
votes
2answers
187 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 ...
11
votes
2answers
1k views

How to roll my own pypi?

I would like to run my own internal pypi server, for egg distribution within my organization. I have found a few projects, such as: http://pypi.python.org/pypi/EggBasket/ ...
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 ...
7
votes
1answer
87 views

Is it possible to trick pip install --find-links into using a downloaded sdist for --editable requirements?

Using the following command: pip install -r requirements.txt -d sdists/ You can easily create an archive of requirements for distributing with your project. This works great if your requirements ...
6
votes
2answers
2k views

Installing specific package versions with Pip

I'm trying to install version 1.2.2 of the MySQL_python adaptor. The current version shown in PyPi is 1.2.3. Is there a way to install the older version? I found an article stating that this should do ...
6
votes
1answer
235 views

How can I install a PyPi equivalent from scratch?

I need to build an internal python package index server, starting from scratch. In house right now we use Python 2.6 and 2.7, and prefer installing packages using pip. We don't require ...
4
votes
3answers
150 views

Embedding HTML in restructured text on PyPi package pages

In Sphinx I know that you can do it: .. raw:: html <div style="margin-top:10px;"> <iframe width="560" height="315" src="http://www.youtube.com/embed/_EjisXtMy_Y" frameborder="0" ...
4
votes
4answers
263 views

Why is PyPi called the cheese shop?

I was running through the tutorials to build a Python distro package yesterday and the PyPi site kept on calling it the cheese shop. Why is that?
4
votes
1answer
592 views

PyPi issues - Upload failed (401): You must be identified to edit package information

Im encountering a problem with pypi Similar to this one: http://stackoverflow.com/questions/1569315/setup-py-upload-is-failing-with-upload-failed-401-you-must-be-identified-to Except that im running ...
4
votes
2answers
938 views

Optional dependencies in a pip requirements file

How can I specify optional dependencies in a pip requirements file? According to the pip documentation this is possible, but the documentation doesn't explain how to do it and I can't find any ...
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 ...
4
votes
2answers
256 views

Python Pypi: what is your process for releasing packages for different Python versions? (Linux)

I've got several eggs I maintain on Pypi but up until now I've always focused on Python 2.5x. I'd like to release my eggs under both Python 2.5 & Python 2.6 in an automated fashion i.e. running ...
4
votes
1answer
907 views

How to upload a pristine Python package to PyPI?

What's the magic "python setup.py some_incantation_here" command to upload a package to PyPI, in a form that can be downloaded to get the original package in its original form? I have a package with ...
3
votes
1answer
122 views

You are not allowed to edit '…' package information

I just registered a new package in PyPI. Once I uploaded it and it's appears to be already published on a website. Next, I slightly changed source code, bumped to a new version and performed python ...
3
votes
1answer
377 views

packaging common python namespaces

I'm looking to package and upload a library I have to PyPI in the next few days, but I'm a little unsure about my approach to the namespace. I have a few otherwise unrelated projects with a similar ...
3
votes
2answers
89 views

How to set up “front page” documentation on PYPI for a project?

I would like to add basic documentation content to the front page of PYPI of my module like it's done, for example, here: http://pypi.python.org/pypi/Jinja2. Right now the askbot download page has a ...
3
votes
3answers
249 views

How to send a package to PyPi?

i wrote a little module and i would like to know what are the basic steps to package it in order to send it to pypi: what is the file hierarchy? how should i name files? should i use distutils to ...
3
votes
1answer
160 views

Problems installing a package from PyPI: root files not installed

After installing the BitTorrent-bencode package, either via easy_install BitTorrent-bencode or pip install BitTorrent-bencode, or by downloading the tarball and installing that via easy_install ...
3
votes
1answer
2k views

pip requirements.txt with alternative index

I want to put all the requirements of a repoze Zope2 install in a pip requirements file. Most of the repoze packages don't seem to be on PyPi, but there's an alternative PyPi index for them here. But ...
3
votes
1answer
80 views

Uploading to the cheeseshop different versions of a package for different versions of Python

I have an open-source Python project (called GarlicSim), and I maintain 4 different versions of it for Python versions 2.4, 2.5, 2.6 and 3.1. Yes, maybe it's unusual, but I like using as much features ...
3
votes
1answer
721 views

Pyfacebook from buildout

What is the best way to install the latest version of pyfacebook with buildout? The package is hosted on github and is not on pypi. This system doesn't have git installed, so a git-based recipe isn't ...
2
votes
1answer
38 views

How should I split up a Python module into PyPi packages?

I have written a Python module that I'd like to make available for others. Right now, it is one large module nested into sub-folders: wraith util ext color I think it's best to split these ...
2
votes
2answers
175 views

How to find “import name” of any package in Python?

I wonder if is there any reliable and consistant way to get a Python package's "import name" / namespace. For example; Package; django-haystack Import name; haystack or Package; ipython Import ...
2
votes
2answers
220 views

Find all packages installed with easy_install/pip?

Is there a way to find all Python PyPI packages that were installed with easy_install or pip? I mean, excluding everything that was/is installed with the distributions tools (in this case apt-get on ...
2
votes
1answer
54 views

google analytics under pypi doc page (packages.python.org)

I'm trying to add a google analytics tracker to the documentation pages of my python project (hosted under http://packages.python.org/myProject). Doc pages are generated using sphinx. I have tried ...
2
votes
2answers
96 views

Why isn't setup.py metadata being used on PyPI?

I had a beta-version of my package up on PyPi. The meta-information (e.g. home page, categories, etc.) from setup.py appeared on the project's PyPi page. Later, I updated the project. The only thing ...
2
votes
2answers
118 views

How to get a copy of a directory from another git branch in a transparent way?

How can a directory be copied from a git branch to another without git tracking the files? My goal is to have different branches for a project and be able to import part of each branch to a single ...
2
votes
5answers
296 views

Using custom packages on my python project

I'm doing a few projects in python right now, and I'm trying to figure out how to work with my own versions of existing open source packages. For instance, I'm using tipfy with zc.buildout, and I've ...
2
votes
3answers
168 views

How can I make this long_description and README differ by a couple of sentences?

For a package of mine, I have a README.rst file that is read into the setup.py's long description like so: readme = open('README.rst', 'r') README_TEXT = readme.read() readme.close() setup( ... ...
2
votes
3answers
157 views

I'd like some advice on packaging this as an egg and uploading it to pypi

I wrote some code that I'd like to package as an egg. This is my directory structure: src/ src/tests src/tests/test.py # this has several tests for the movie name parser src/torrent ...
2
votes
3answers
193 views

What is an elegant way to find versions of packages on a pypi package index?

Currently I'm using a very ugly approach based on a regex for finding links and taking them apart. I'm unhappy with the code, so I'm asking for nicer solutions, preferably using only the stdlib. ...
1
vote
3answers
58 views

Caching Python requirements for production deployments

I'm building various python-based projects that use pip/buildout to install dependencies. But I don't like the idea of someone deleting a github project and crippling my apps, or a network outage ...
1
vote
0answers
88 views

Mac OS X, pip: specify compiler for packages containing C libraries

I am having some trouble with compiling mapscript (is a package from pypi containing C code) with the default clang compiler using pip. Here's my attempt:- $ sudo pip install mapscript Password: ...
1
vote
1answer
168 views

pypi UserWarning: Unknown distribution option: 'install_requires'

Any body encounter this warning when execute "Python setup.py" of a pypi package? 'install_requires' defines what this package requires. A lot of pypi packages have this option. How can it be an ...
1
vote
1answer
43 views

Moving into collective SVN and using jarn.mkrelease

I've got a product, currently available here: http://svn.plone.org/svn/collective/RestrictedSize.RestrictedSize/ And I'm trying to use jarn.mkrelease to release an egg. However, I get this message ...
1
vote
2answers
442 views

how to install python pip on python 2.7

2 days ago i had a problem with pypm and couldn't fix it so i uninstalled activepython, and I wanna install pip which suppose to be an alternative to pypm I've been looking around for 6h and still ...
1
vote
1answer
36 views

How can a python project containing native bindings be distributed via PyPi

My python project contains some C/C++ bindings with some python code and I want to distribute it through PyPi. If I create a source archive with python setup.py sdist and upload it to PyPi, my ...
1
vote
1answer
94 views

How to delete documentation from PyPi

I just noticed that there is some ancient version of documentation accessible directly at http://pypi.python.org/pypi/gensim (right at the top, under Package Documentation). I may have tested that ...
1
vote
2answers
116 views

Download MongoKit “devel” branch from Git using Buildout?

Any solid examples of using buildout to download a tarball from a specific branch in Git into my eggs directory? All the answers i've tried seem to keep grabbing the version from PyPi instead. I'm ...
1
vote
3answers
163 views

How do I automatically install missing python modules?

I would like to be able to write: try: import foo except ImportError: install_the_module("foo") What is the recommended/idiomatic way to handle this scenario? I've seen a lot of scripts ...
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
1answer
83 views

How to contribute improvements to packages hosted on Cheeseshop ( pypi )?

I've been using zc.buildout more and more and I'm encountering problems with some recipes that I have solutions to. These packages generally fall into several categories: Package with no obvious ...
0
votes
1answer
23 views

Any documentation for the package subnets-reslover?

I am a new user of python and would like to try subnets-resolver. However, I can`t find the documentation of this package. Can someone point me to it?
0
votes
2answers
199 views

Default server in multiple server configuration of distutils in ~/.pypirc

I want to have multiple PyPI servers in my ~/.pypirc file so I can easily publish to different servers, depending on the project. My use-case is this, I have some internal projects that I want to ...
0
votes
1answer
146 views

Problem with command-line registeration with PyPI in Windows 7

When I type c:\python32\python.exe setup.py register and press ENTER I get the following: running register running check We need to know who you are, so please choose either: 1. use your existing ...
0
votes
0answers
47 views

django apps don't have django as requirement - why?

if django apps - or python modules/packages in general - depend on an other package it's (mostly) defined in the setup.py (install_requires). why is it that i never see "django" defined as ...

1 2