From b71873fe877672fa46e4cc545637ee06896184c4 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sun, 8 May 2016 14:03:59 -0700 Subject: [PATCH] Change VIRTUALENVWRAPPER_VIRTUALENV_ARGS example --no-site-packages option is deprecated, so we should use something else as an example so we don't mislead folks: https://virtualenv.pypa.io/en/latest/reference.html#cmdoption--no-site-packages --- modules/python/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/python/README.md b/modules/python/README.md index d9497d6f..a03e12f7 100644 --- a/modules/python/README.md +++ b/modules/python/README.md @@ -55,11 +55,10 @@ is used. Replace *Developer* with your projects directory. export PROJECT_HOME="$HOME/Developer" The variable `$VIRTUALENVWRAPPER_VIRTUALENV_ARGS` tells virtualenvwrapper what -arguments to pass to `virtualenv`. For example, set the value to -*--no-site-packages* to ensure that all new environments are isolated from the -system site-packages directory. +arguments to pass to `virtualenv`. For example, set *--download* to force +pre-installed packages to be re-downloaded from PyPI. - export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages' + export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--download' Aliases -------