Notes
Virtualenv 1.7 changed default behavior
Posted by Dan on
Saturday the 28th of January, 2012
The default behaviour of virtualenv has changed, 1.7 now creates your virtual environment with what was the --no-site-packages option as default. To create an environment with global packages there is a new option: 1virtualenv --system-site-packages ENV
The default behaviour of virtualenv has changed, 1.7 now creates your virtual environment with what was the --no-site-packages option as default.
To create an environment with global packages there is a new option:
| virtualenv --system-site-packages ENV
|
Posted in: Python