virtualenv is a tool that creates sandboxed Python environments.
40
votes
3answers
7k views
Use different Python version with virtualenv
I have a Debian system currently running with python 2.5.4. I got virtualenv properly installed, everything is working fine. Is there a possibility that I can use a virtualenv with a different version ...
38
votes
3answers
6k views
Activate a virtualenv via fabric as deploy user
I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull.
...
34
votes
7answers
20k views
Getting “Error loading MySQLdb module: No module named MySQLdb” - have tried previously posted solutions
This is a much discussed issue for OSX 10.6 users, but I haven't been able to find a solution that works. Here's my setup:
Python 2.6.1 64bit
Django 1.2.1
MySQL 5.1.47 osx10.6 64bit
I create a ...
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 ...
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 ...
24
votes
2answers
3k views
Ruby equivalent of virtualenv?
Is there something similar to the Python utility virtualenv?
Basically it allows you to install Python packages into a sandboxed environment, so easy_install django doesn't go in your system-wide ...
22
votes
2answers
4k views
Django and VirtualEnv Development/Deployment Best Practices
Just curious how people are deploying their Django projects in combination with virtualenv
More specifically, how do you keep your production virtualenv's synched correctly with your development ...
22
votes
1answer
4k views
How to leave a python virtualenv?
I'm using virtualenv and the virtualenvwrapper. I can switch between virtualenv's just fine using the workon command.
me@mymachine:~$ workon env1
(env1)me@mymachine:~$ workon env2
...
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
4answers
3k views
How to use virtualenv with Google App Engine SDK on Mac OS X 10.6
I am pulling my hair out trying to figure this out because I had it working until last week and somehow it broke.
When I setup a virtualenv for a Google App Engine app and start the app with ...
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 ...
18
votes
5answers
1k views
Virtualenv: Where do I put stuff?
What sort of directory structure should one follow when using virtualenv? For instance, if I were building a WSGI application and created a virtualenv called foobar I would start with a directory ...
15
votes
5answers
932 views
Can I install Python windows packages into virtualenvs?
Virtualenv is great: it lets me keep a number of distinct Python installations so that different projects' dependencies aren't all thrown together into a common pile.
But if I want to install a ...
13
votes
3answers
4k views
Virtualenv on Ubuntu with no site-packages
I've been using virtualenv lately while developing in python. I like the idea of a segregated development environment using the --no-site-packages option, but doing this while developing a PyGTK app ...
11
votes
2answers
486 views
Python: Determine if running inside virtualenv
Is it possible to determine if the current script is running inside a virtualenv environment?
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 ...
11
votes
5answers
5k views
Virtualenv with Eclipse (Galileo)
Does anybody have directions for getting Eclipse (Galileo), PyDev, and Virtualenv working together? I'm specifically trying to run Pinax but any instructions are fine.
I thought I had it (and even ...
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
1answer
240 views
What are the pitfalls and workarounds when using Python virtual environments on Windows?
Short Description
The question is not meant to ask if using virtual environments are needed, but when using Ian Bicking's virtualenv what is the best way, if any, to manage environments in Windows. ...
10
votes
1answer
721 views
Comprehensive beginner's virtualenv tutorial?
I've been hearing the buzz about virtualenv lately, and I'm interested. But all I've heard is a smattering of praise, and don't have a clear understanding of what it is or how to use it.
I'm looking ...
10
votes
4answers
1k views
is there an virtual environment for node.js?
I've searched the wiki modules page, but i can't find anything similar to virtualenv (python) or rvm.
Anyone here separates node.js in their own env? I really don't like to install npm system-wide.
9
votes
1answer
93 views
Strange “local” folder inside virtualenv folder
After I create my virtualenv environment (VE), inside it there is a symbolic link named "local". It points to the VE folder, which means that if you open it you end up in the same folder that you ...
9
votes
1answer
991 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 ...
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
1k views
Don't touch my shebang!
One thing I hate about distutils (I guess he is the evil who does this) is that it changes the shebang line. In other words, the more rational and environment-vars decided scripture
#!/usr/bin/env ...
9
votes
6answers
720 views
How can I install specialized environments for different Perl applications?
Is there anything equivalent or close in terms of functionality to Python's virtualenv, but for Perl?
I've done some development in Python and a possibility of having non-system versions of modules ...
8
votes
4answers
177 views
How to structure standard Python project (modules, libraries) for future use in Google App Engine?
I'm currently developing a Python project which is growing and I may implement it as a webapp in GAE in the future.
As the project is growing I'm pruning potentially reusable code into separate ...
8
votes
2answers
134 views
Java , Python : VirtualEnv for Java
Is there anything similar to python virtualenv for Java or JVM Languages ?
8
votes
3answers
214 views
Using git to manage virtualenv state: will this cause problems?
I currently have git and virtualenv set up in a way which exactly
suits my needs and, so far, hasn't caused any problems. However I'm aware that
my setup is non-standard and I'm wondering if anyone ...
8
votes
3answers
829 views
Workflow using virtualenv and pip
I have python2.6 and django1.2.3 already installed on my system (Ubuntu 10.x).
This is the setup i use for most of my projects. But for some projects I need sandboxed environments, different django ...
8
votes
2answers
749 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
...
8
votes
2answers
583 views
How to migrate from virtualenv to buildout?
I'm attempting to move a project from virtualenv to buildout, but I don't think I've grasped the whole concept of buildout. All the tutorials I've found discuss buildout in the context of using it ...
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
2answers
681 views
Python can't locate distutils_path on Mac OSX
I've been using virtualenv + pip for python development. I'm not sure what happened, but suddenly whenever I try to run a command-line tool or import libraries, I get this error message:
Traceback ...
8
votes
4answers
7k views
Getting a 'source: not found' error when using source in a bash script
I'm trying to write (what I thought would be) a simple bash script that will:
run virtualenv to create a new environment at $1
activate the virtual environment
do some more stuff (install django, ...
7
votes
2answers
144 views
+50
Getting an embedded Python runtime to use the current active virtualenv
I make heavy use of virtualenv to isolate my development environments from the system-wide Python installation. Typical work-flow for using a virtualenv involves running source ...
7
votes
4answers
230 views
How can I get a list of all the Python standard library modules
I want something like sys.builtin_module_names except for the standard library. Other things that didn't work:
sys.modules - only shows modules that have already been loaded
sys.prefix - a path that ...
7
votes
3answers
558 views
Trouble activating virtualenv on server via Fabric
I am trying to run some Django management commands via Fabric on my staging server.
The problem is it seems Fabric is not able to activate the virtualenv and thus using system python/libs when ...
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
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 ...
7
votes
3answers
945 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 ...
7
votes
1answer
820 views
Python: how to set virtualenv for a crontab?
I want to set up a crontab to run a Python script.
Say the script is something like:
#!/usr/bin/python
print "hello world"
Is there a way I could specify a virtualenv for that Python script to run ...
7
votes
2answers
1k views
Cron and virtualenv
I am trying to run a Django management command from cron. I am using virtualenv to keep my project sandboxed.
I have seen examples here and elsewhere that show running management commands from within ...
7
votes
2answers
3k views
gcc error trying to install PIL in a Python2.6 virtualenv
I have created a virtualenv with the --no-site-packages option. I get an error trying to install PIL:
http://pastebin.com/SVqxs1sC
...
error: command '/usr/bin/gcc' failed with exit status 1
...
7
votes
2answers
2k views
Can existing virtualenv be upgraded gracefully?
I have a virtualenv created for Python 2.5 and want to "upgrade" it to Python 2.6.
Here is how it was originally set up:
virtualenv --no-site-packages -p python2.5 myenv
I now run virtualenv in ...
7
votes
2answers
2k views
Buildout and Virtualenv
I am messing around with the combination of buildout and virtualenv to setup an isolated development environment in python that allows to do reproducible builds.
There is a recipe for buildout that ...
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 ...
6
votes
2answers
642 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
388 views
The anatomy of a Python web project: development, packaging, deployment
I'm new to Python (from Java+Ant) and was wondering if someone could detail how to best use Fabric+Pip+Virtualenv to set up a Python web application package skeleton.
The end goal is to be able to do ...
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 ...