Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 for (ideally) a follow-along tutorial that can take me from Windows or Linux with no Python on it, and explain every step of (in no particular order):

  • what I should do to be able to start using virtualenv
  • specific reasons why using virtualenv is a good idea
  • situations where I can/can't use virtualenv
  • situations where I should/shouldn't use virtualenv

And step through (comprehensively) a couple sample situations of the should+can variety.

So what are some good tutorials to cover this stuff? Or if you have the time and interest, perhaps you can answer a few of those questions here. Either in your answer, or as a link to tutorials that answer it, these are the things I'd like to know.

share|improve this question
1  
This article from dabapps makes the concepts simple – suhair Apr 22 at 12:35

5 Answers

up vote 57 down vote accepted

This is very good: http://simononsoftware.com/virtualenv-tutorial/

And this is a slightly more practical one: http://iamzed.com/2009/05/07/a-primer-on-virtualenv/

share|improve this answer
1  
+1 I agree they were good for a beginner like me. I ran through both, now I at least know what it is and the basics of getting/using it. (The second for some reason explained activate but neglected deactivate o_O). I'm still hoping for more elaboration on when to use it (and when not to), and deeper examples. – Dan Burton May 1 '11 at 7:13
I believe the answer is to always use it, in the same way you should always use version control. – mlissner Feb 7 at 0:45

Till date, the tutorials i could find out lacked one thing or the other, http://blog.fruiapps.com/2012/06/An-introductory-tutorial-to-python-virtualenv-and-virtualenvwrapper this one helps you install stuff, get started, using wrappers, hooks etc. this appeared the most complete. Hope you feel the same.

share|improve this answer

Here's another good one: http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/

This one shows how to use pip and a pip requirements file with virtualenv; Scobal's two suggested tutorials are both very helpful but are both easy_install-centric.

Note that none of these tutorials explain how to run a different version of Python within a virtualenv - for this, see this SO question: Use different Python version with virtualenv

share|improve this answer

For setting up virtualenv on a clean Ubuntu installation, I found this zookeeper tutorial to be the best - you can ignore the parts about zookeper itself. The virtualenvwrapper documentation offers similar content, but it's a bit scarce on telling you what exactly to put into your .bashrc file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.