utahta / pythonbrew

Python Environment manager
MIT License
1.44k stars 162 forks source link

remove venv create -n option; add a venv create -g option which means gi... #120

Closed hrzhu closed 11 years ago

hrzhu commented 11 years ago

remove venv create -n option; add a venv create -g option which means give access to the global site-packages dir to the vitrualenv; the previous -n option is now the default behaviour in recent version of virtualenv

--no-site-packages option of virtualenv is deprecated and made to the default behaviour. See here. Meanwhile, a --system-site-packages option is added. virtualenv 1.8.4 used by pythonbrew has already made this change. I remove the -n option and add a -g option to create a venv with the --system-site-packages option.

georgedorn commented 11 years ago

+1