Tagged Questions

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 ...
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

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

virtualenv --no-site-packages and pip still finding global packages?

I was under the impression that virtualenv --no-site-packages would create a completely separate and isolated Python environment, but it doesn't seem to. For example, I have python-django installed ...
10
votes
3answers
270 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 ...
9
votes
1answer
989 views

How do I install from a local cache with pip?

I install a lot of the same packages in different virtualenv environments. Is there a way that I can download a package once and then have pip install from a local cache? This would reduce download ...
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 ...
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
734 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 ...
7
votes
3answers
944 views

install pil on virtualenv with libjpeg

Currently I'm installing PIL into my virtual env as follows: pip install -E . -r ./releases/%s/requirements.txt where requirements.txt contains: pil I can upload png images but not jpeg images ...
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
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 ...
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
557 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 ...
4
votes
1answer
149 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
897 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
4answers
731 views

windows + virtualenv + pip + numpy (problems when installing numpy)

On windows, I normally just use the binary installer, but I would like to install numpy only in a virtualenv this time, so I created a virtual env: virtualenv --no-site-packages --distribute ...
4
votes
1answer
588 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
542 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
1answer
517 views

virtualenv, sys.path and site-packages

i am setting up a virtualenv for django deployment. i want an isolated env without access to the global site-packages. i used the option --no-site-packages, then installed a local pip instance for ...
4
votes
2answers
1k views

pip: upgrade package without upgrading dependencies

I'm using pip and virtualenv for my python application. I would like to upgrade to a new version of the application without touching the dependencies. When I use pip install -U, it tries to upgrade ...
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 ...
3
votes
4answers
74 views

How to check whether virtualenv was created with '--no-site-packages'?

Sometimes I get errors that I suspect are the result of my Django app using globally installed Python modules/Django apps instead of those within its virtualenv. Is there a way to check whether my ...
3
votes
1answer
98 views

Pip NLTK install issue on Ubuntu using Virtualenv

For reference here is the nltk installation documentation nltk here Is there a way to install nltk using pip and virtualenv? I have installed the dependencies using pip into my virtualenv but when I ...
3
votes
1answer
124 views

Python does not “see” a package

I followed this tutorial in order to install python2.7 on my CentOS 5.5: http://villaroad.com/2010/10/rolling-python-2-6-2-on-centos-5-3/ After installation of python 2.7 I've got: /opt/python2.7$ ...
3
votes
1answer
357 views

Renaming a virtualenv folder without breaking it

I've created folder and initialized a virtualenv instance in it. $ mkdir myproject $ cd myproject $ virtualenv env When I run (env)$ pip freeze, it shows the installed packages as it should. Now I ...
3
votes
1answer
141 views

Why does pip freeze report some packages in a fresh virtualenv created with --no-site-packages?

When I create a fresh virtualenv, pip freeze shows that I have a couple of packages installed even though I've not installed anything into the environment. I was expecting pip freeze to return empty ...
3
votes
1answer
280 views

Python - manually install package using virtualenv

I have a python program I want to install into my virtualenv - it's a zip package that I need to unzip and then run a setup.py program - but my question is more regarding how to get these unzipped ...
3
votes
3answers
2k views

Installing psycopg2 into virtualenv when PostgreSQL is not installed on development system

Is it possible to install psycopg2 into a virtualenv when PostgreSQL isn't installed on my development system—MacBook Pro with OS X 10.6? When I run pip install psycopg2 from within my virtualenv, I ...
3
votes
2answers
306 views

Can pip use existing packages rather than downloading again?

I'm working on a new project that needs a new virtualenv. When I do pip install -r requirements.txt, it downloads the packages all over again even though those packages already exist on the previous ...
3
votes
5answers
370 views

pip not finding setup file

I am getting an error when trying to install a python package with pip. It is looking in a certain directory for "setup.py" after untaring the package and it can't find it there. The setup.py file ...
3
votes
1answer
912 views

virtualenv pip mysqldb mac os X python

I tried this http://jazstudios.blogspot.com/2010/07/installing-mysql-python-mysqldb-in.html tip to install mysql-python (mysqldb) inside a virtualenv (named dogme). (this post point out 2 important ...
3
votes
2answers
723 views

How can I upgrade specific packages using pip & a requirements file?

I'm using pip w/ a requirements file, in a virtualenv, for my Django projects. I'm trying to upgrade some packages, notably Django itself, and I'm getting an error about source code conflicts: ...
3
votes
2answers
494 views

pip requirements freeze, numpy and scipy on OSX

I've got a pip requirements file that I'm using with virtualenv to automatically grab dependencies for my app. The app depends on both NumPy and SciPy and as such my pip requirements file includes: ...
3
votes
1answer
724 views

Using PIP in a virtual environment, how do I install MySQL-python

When I'm in my virtual environment, I attempt to run: pip install MySQL-python This didn't work, so I tried downloading the package and installing it by running: python setup.py install This ...
3
votes
3answers
910 views

How to install libxml2 in virtualenv?

I have virtualenv with --no-site-packages option. I'm using scrapy in it. Scrapy uses libxml2 by import libxml2. How to install libxml2 in virtualenv using pip or easy_install?
3
votes
5answers
5k views

mysql-python install problem using virtualenv, windows, pip

I'm trying to install mysql-python in a virtualenv using pip on windows. At first, I was getting the same error reported here, but the answer there worked for me too. Now I'm getting this following ...
3
votes
4answers
1k views

Activate virtualenv via os.system()

I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able to activate and run commands in ...
2
votes
0answers
76 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
2answers
114 views

pip freeze only virtualenv installs

So I wanted to install iPython globally and have Django use it with manage.py shell, but I figures out that it will only use iPython if it is installed in the current environment. So using ...
2
votes
1answer
213 views

Why is GCC ignoring ARCHFLAGS in Snow Leopard?

I'm trying to install AMFAST in a virtual_env location based on a dependencies file. I have export ARCHFLAGS="-arch x86_64" in my local .profile, and have confirmed its presence by running env and ...
2
votes
1answer
241 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
1answer
213 views

Pip with virtualenv not upgrading Django

I'm using pip with virtualenv --no-site-packages --distribute and am trying to upgrade Django. pip install -U Django should upgrade it according to the docs I found. However, it simply finds the ...
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
2answers
241 views

Virtualenv and pip on a mac, does it pickup the environment automatically?

Does python's pip with virutalenv automatically detect the virtualenv based on the folder you are on (similar to how ruby and rvm does)? i.e. I may have many virtual environments, and as I just ...
2
votes
0answers
376 views

Error exit status 2 trying to install PIL with pip in virtualenv on windows 7

Trying to install PIL via pip in my virtualenv. However I get this error. C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IlibImaging -Ic:\My_Pro ...
2
votes
2answers
411 views

How do I create a pip requirements file for a tarball on my local filesystem?

Tell me if what I'm trying to do doesn't make sense. I want to create a virtual environment that, among other things, includes MySQLDb 1.2.3. This library is distributed as a gzipped tarball (.tgz) ...
2
votes
3answers
205 views

Is it possible to pre-create a virtualenv for use in hudson builds?

I'm following the outline of the hudson/python/virtualenv CI solution described at heisel.org but one step of this is really chafing, and that's the part where the virtualenv, created just for the CI ...
2
votes
2answers
389 views

Pip + WSGI import errors

when i deploy my apps that worked fine using the django test server I usually get errors for every package I installed using pip install -e ....#egg=foo. I usually do this using virtualenv, which ...
1
vote
3answers
51 views

How do I force a new version of Django in a virtualenv?

I want to install version 1.3.1 of Django in a new virtualenv. I already have Django version 1.3.0 installed system-wide. I have installed the virtualenv with no-site-packages and attempted to ...

1 2