Tagged Questions

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 ...
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 ...
24
votes
2answers
2k views

How do you use pip, virtualenv and Fabric to handle deployment?

What are your settings, your tricks, and above all, your workflow? These tools are great but there are still no best practices attached to their usage, so I don't know what is the most efficient way ...
22
votes
1answer
3k views

PIP: how do I install a python package into a different directory?

I know the obvious answer is to use virtualenv and virtualenvwrapper, but for various reasons I can't/don't want to do that. So how do I modify this command: pip install package_name to make pip ...
22
votes
5answers
3k views

Upgrading all packages with pip

Is it possible to upgrade all python packages at one time with Pip? I saw someone made this a issue: http://bitbucket.org/ianb/pip/issue/4/add-upgrade-and-upgrade-all-commands
20
votes
3answers
4k views

How to install psycopg2 with “pip” on Python?

I'm using "virtualenv" and I need to install "psycopg2". I have done the following: pip install ...
20
votes
3answers
6k views

The problem with installing PIL using virtualenv or buildout

When I install PIL using easy_install or buildout it installs in such way, that I must do 'import Image', not 'from PIL import Image'. However, if I do "apt-get install python-imaging" or use "pip -E ...
20
votes
3answers
6k views

virtualenv, mysql-python, pip: anyone know how?

I'm trying to install the mysql bindings in a virtualenv. I'd prefer to use pip or easy_install. pip gives me the following error: File "setup_posix.py", line 24, in mysql_config raise ...
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
1answer
3k views

Broken Pipe error when using pip to install pycrypto on Mac OS X

I am attempting to install pycrypto (version 2.3) on OS X via pip. I am getting a "Broken pipe" error when the compiler attempts to compile MD2.c. I get a very similar error when using easy_install. ...
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 ...
10
votes
3answers
272 views

Best practices for Python deployment — multiple versions, standard install locations, packaging tools etc

Many posts on different aspects of this question but I haven't seen a post that brings it all together. First a subjective statement: it seems like the simplicity we experience when working with the ...
10
votes
5answers
4k views

Python package install using pip or easy_install from repos

The simplest way to deal with python package installations, so far, to me, has been to check out the source from the source control system and then add a symbolic link in the python dist-packages ...
9
votes
3answers
151 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
2k views

Cannot install psycopg2 on OSX 10.6.7 with XCode4

Trying to install psycopg2 on OSX results in the following: building 'psycopg2._psycopg' extension creating build/temp.macosx-10.6-universal-2.6 creating ...
8
votes
1answer
856 views

Does Python have something as robust as Ruby's rvm?

This is not a duplicate of this question. I am already aware of virtualenv and virtualenvwrapper and pip but they don't quite seem to have exactly what I want. I'm looking for a way that I can ...
8
votes
4answers
4k views

Installing scipy with pip

It is possible to install numpy with pip using pip install numpy. Is there a similar possibility with scipy? (Doing pip install scipy does not work) Update The package scipy is now available to be ...
7
votes
1answer
85 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 ...
7
votes
3answers
300 views

How to specify install order for python pip?

I'm working with fabric(0.9.4)+pip(0.8.2) and I need to install some python modules for multiple servers. All servers have old version of setuptools (0.6c8) which needs to be upgraded for pymongo ...
7
votes
2answers
566 views

How do I package a python application to make it pip-installable?

I'm writing a django application in my spare time for a footy-tipping competition we're running at work. I figured I'd use this time wisely, and get up to speed on virtualenv, pip, packaging, django ...
7
votes
2answers
3k views

pip install mysql-python show error

this is my error : (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python Downloading/unpacking mysql-python Downloading MySQL-python-1.2.3.tar.gz (70Kb): 70Kb downloaded ...
7
votes
2answers
736 views

Python and pip, list all versions of a package that's available?

Given the name of a Python (2.X) package that can be installed with pip and virtualenv, is there any way to find out a list of all the possible versions of it that pip could install? Right now it's ...
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
1answer
78 views

PIP always reinstalls package when using specific SVN revision

PIP always downloads and installs a package when a specific SVN revision is specified (slowing the syncing process considerably). Is there a way around this? Normally pip detects that the package is ...
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
3answers
4k views

pip install lxml error

this is my error : (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install lxml Downloading/unpacking lxml Running setup.py egg_info for package lxml Building lxml version 2.3. ...
6
votes
2answers
640 views

Migrating to pip+virtualenv from setuptools

So pip and virtualenv sound wonderful compared to setuptools. Being able to uninstall would be great. But my project is already using setuptools, so how do I migrate? The web sites I've been able to ...
6
votes
1answer
2k views

Is it possible to use pip to install a package from a private github repository?

As the title suggests I am trying to install a python package from a private github repo. For a public repository I can issue the following command which works fine: pip install ...
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
843 views

Steps to install py2cairo?

Seems that pycairo was branched to py2cairo for 2.x versions back in May. There are no pip or easy_install installation options for py2cairo. I've grabbed the latest py2cairo tar, as well as the cairo ...
6
votes
1answer
2k views

How is pip install using git different than just cloning a repository?

I'm a beginner with Django and I'm having trouble installing django-basic-apps using pip. If I do this... $ cat requirements.txt git+git://github.com/nathanborror/django-basic-apps.git $ pip ...
6
votes
2answers
206 views

Including global package into a virtualenv that has been created with --no-site-packages

I'd usually prefer to create virtualenvs with --no-site-packages option for more isolation, and also because default python global packages includes quite a lot of packages, and usually most of them ...
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 ...
5
votes
1answer
408 views

Buildout vs virtualenv + pip for django?

Pros and cons? I'm personally using buildout for my django projects but thinking of switching to virtualenv + pip for its simplicity.
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
2answers
1k views

How do I manage third-party Python libraries with Google App Engine? (virtualenv? pip?)

What's the best strategy for managing third-party Python libraries with Google App Engine? Say I want to use Flask, a webapp framework. A blog entry says to do this, which doesn't seem right: $ cd ...
5
votes
4answers
533 views

What are the benefits of pip and virtualenv?

So everyone is telling me to use pip and virtualenv but no-one is able to explain me how it is better than my current approach. The main reason for people to use pip and virtualenv seems to be that ...
5
votes
1answer
316 views

Python pip - install documentation for packages?

Is there a way to install/generate the documentation for the packages installed using pip? I wish to install all the required packages for a project, as well as all the associated documentation (e.g. ...
5
votes
3answers
1k views

pip: dealing with multiple Python versions?

Is there any way to make pip play well with multiple versions of Python? For example, I want to use pip to explicitly install things to either my site 2.5 installation or my site 2.6 installation. ...
5
votes
1answer
921 views

Can I use `pip` instead of `easy_install` for `python setup.py install` dependency resolution?

python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip instead?
5
votes
2answers
415 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 ...
4
votes
2answers
166 views

How can I find the module(s) provided by a given Python distribution?

I need to construct a list of modules that are provided by a list of Python distributions specified in a requirements.txt file. The distributions will first be installed so they should be available ...
4
votes
1answer
151 views

What is softwares in Python which are alternative to Ruby's bundler / Perl's carton?

I know virtualenv and pip. But these are a bit different from bundler/carton. ex.) pip writes the absolute path to shebang or activate script pip doesn't have the "exec" sub command(bundle exec ...
4
votes
1answer
902 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
76 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
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
1answer
589 views

Pip, Virtualenv & Git project setup and bootstrapping

Assuming you have a project setup like this: -WebApp |_ requirements.txt |_ bootstrap.py (virtualenv bootstrap script) |_ src |_ setup.py |_ develop-app |_ ...
4
votes
1answer
543 views

Adding shared python packages to multiple virtualenvs

Current Python Workflow I have pip, distribute, virtualenv, and virtualenvwrapper installed into my Python 2.7 site-packages (a framework Python install on Mac OS X). In my ~/.bash_profile I have the ...
4
votes
2answers
930 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 ...

1 2 3 4 5