From 7011031a871918aece5670deee32e53671ea66a8 Mon Sep 17 00:00:00 2001 From: Kaleb Elwert Date: Thu, 13 Apr 2017 03:02:07 -0700 Subject: [PATCH] Don't use a deprecated argument as a python example Thanks to @jeffwidman for pointing this out Closes #1141 --- modules/python/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/python/README.md b/modules/python/README.md index d9497d6..4047d0f 100644 --- a/modules/python/README.md +++ b/modules/python/README.md @@ -56,10 +56,10 @@ is used. Replace *Developer* with your projects directory. 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* to ensure that all new environments have access to the system site-packages directory. - export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages' + export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--system-site-packages' Aliases -------