Calmcode - virtualenv: intro

Intro

1 2 3 4 5 6 7 8 9 10

If you're doing more than one project on your machine then you need to concern yourself with dependencies across projects. In python the old-school way of doing this is to use virtualenv and pip. These tools get the job done, but they may have some caveats you should be aware of.

If you're doing more than one project on your machine then you need to concern yourself with dependencies across projects.