The virtualenvwrapper tag has no wiki summary.
41
votes
3answers
8k 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 ...
36
votes
7answers
21k 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 ...
9
votes
1answer
911 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
1answer
890 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 ...
6
votes
4answers
2k views
Installing virtualenvwrapper on Windows
I've installed virtualenv and virtualenvwrapper on Windows using easy_install. But mkvirtualenv is missing. I tried to search on my machine but I couldn't find it. I don't know how to solve it. Do you ...
5
votes
1answer
565 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 ...
5
votes
2answers
720 views
Django virtualenv deployment configuration
I recently start to use virtualenvwrapper and created
mkdir ~/.virtualenvs
mkvirtualenv example.com
Virtualenvwarpper automatical create a virtualenv named example.com under ~/.virtualenv
so this ...
4
votes
1answer
156 views
Running non-system Python with virtualenv in 32bit mode on OS X
Short Question
Using virtualenv / virtualenvwrapper is it possible to add a prefix to the python call that linked to a specific virtual environment?
Background
I would like to have multiple virtual ...
3
votes
4answers
103 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
324 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 ...
2
votes
2answers
148 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
3answers
196 views
virtualenvwrapper functions unavailable in shell scripts
So, once again, I make a nice python program which makes my life ever the more easier and saves a lot of time. Ofcourse, this involves a virtualenv, made with the mkvirtualenv function of ...
2
votes
1answer
213 views
virtualenv relocatable — does it really work
I kept looking for answer but didn't find one.
I have a virtual env dir, a project dir with a req.txt.
When I run pip -r req.txt, it installs some apps from github (source) and some from pypi.
The ...
1
vote
0answers
36 views
Error with virtualenv when I type deactivate IOError: [Errno socket error] [Errno -2] Name or service not known
When I type deactivate to come out of virtualenv, I get error as:
IOError: [Errno socket error] [Errno -2] Name or service not known.
Also libraries which I had installed out of virtualenv (i.e. ...
1
vote
2answers
47 views
Why do I get an error when running mysqld in a virtualenv?
When I run mysqld in my virtualenv I get an error and abort message.
(nettuts)sez@sez-laptop:~/.virtualenvs$ mysqld
111220 15:22:59 [Warning] Can't create test file ...
1
vote
1answer
97 views
Django throws an ImportError on Mac OS X … any help?
So I'm trying to get a work project that I git-cloned from work (used in numerous other places, I know the project works fine) to run on my MacBook. I installed Django (via sudo python setup.py ...
1
vote
1answer
193 views
This bash script is not working - Linux/Python
I can't seem to figure out how to get his bash script working.
#!/bin/bash
export WORKON_HOME=~/.envs
source /usr/local/bin/virtualenvwrapper.sh
workon staging_env
It is using viretualenv and ...
0
votes
1answer
41 views
virtualenv / virtualenvwrapper / django-selectable
I am trying to use virtualenv, and virtualenvwrapper, with my Django project. I have installed the django-selectable package in a virtualenv named selectable. My django project is not in a virual ...
0
votes
0answers
65 views
Multiple python versions using virtualenv -p (and virtualenvwrapper-win) on Windows
I'd like to use multiple versions of python (2.5 and 2.7 is what I need, but would be nice to have 3.2 also).
On Windows XP!
I'd like to use virtualenvwrapper-win instead of virtualenv -p
Here's ...
0
votes
1answer
57 views
What's the relationship between environments and projects in virtualenvwrapper?
In other words, what's the difference between the mkvirtualenv and mkproject commands?
I have a workflow that looks like this:
/dev
projectA
appA
appB
projectB
appA
...
0
votes
2answers
121 views
Setting DJANGO_SETTINGS_MODULE under virtualenv?
I want the environment variable DJANGO_SETTINGS_MODULE to change depending on what I say for workon. It seemed to me that I want to set it in .virtualenvs/postmkvirtualenv but my trial had no effect.
...
0
votes
1answer
67 views
Virtualenvwrapper.sh functions not available in bash shell
I'm doing a new install of virtualenvwrapper, and for some reason after running
virtualenvwrapper.sh it's functions aren't available.
$ virtualenvwrapper.sh
creating.....
$ workon
workon: command not ...
0
votes
1answer
20 views
How can I determine which version of virtualenvwrapper is installed?
I know that which virtualenvwrapper.sh will locate the virtualenvwrapper bash script.
But, how can I determine which version of virtualenvwrapper is installed?
0
votes
1answer
59 views
List all virtualenv
In virtualenvwrapper, is there a simple way to list all virtualenv on my machine?
(like what yolk -l does to list all python packages in the current virtual environment?)
CLARIFICATION: "ls -la" in ...
0
votes
4answers
104 views
Virtualenv virtualenvwrapper and _imaging
So my Mac is correctly set up with _imaging but as soon as I create a new virtualenv with mkvirtualenv myproject and run the python interpreter
import _imaging
Traceback (most recent call last):
...
0
votes
2answers
652 views
Virtualenvwrapper errrors on Mac OS X Lion
I have just update my Mac from Snow Leopard to Lion. I then needed to install virtualenv and virtualenvwrapper. I used for both easy_install.
I also added virtualenvwrapper settings to my ...
0
votes
0answers
670 views
Using different versions of python with virtualenvwrapper
I've got various versions of python installed on my Mac using Macports. When I've selected python 2.7 via $ port select python python27, virtualenvwrapper works perfectly.
But if I select another ...
0
votes
1answer
285 views
Problem setting up a virtualenv
I'm trying to set up a virtualenv on Ubuntu 10.04 with Python 2.6.5 but having some issues.
After having installed virtualenv and virtualenv wrapper with pip, I'm running the command: virtualenv ...
0
votes
1answer
222 views
virtualenvwrapper.sh doesn't not run
I just tried to install virtualenvwrapper and when I
run the following (as found in the instructions)
source /usr/local/bin/virtualenvwrapper.sh
It failed with the following :
-bash: ...
0
votes
0answers
311 views
Problem with virtualenv(wrapper) and pythonpath
Ive created a virtualenv for a django project im working on, but i seem to be facing a strange error with pythonpath.
The environment was created with the --no-site-packages option.
Ive installed a ...
0
votes
1answer
616 views
virtualenvwrapper on Ubuntu 10.10 - Python
can't get virtualenvwrapper to work on Ubuntu 10.10 desktop.
mkvirtualenv test_env
returns:
ERROR: virtualenvwrapper could not find virtualenv in your path
I followed the install ...