I can create a new virtualenv that ignores global site-packages with \"--no-site-package\". Is it possible to change an existing virtualenv (which was created without \"--no
Can you just create a new one and then re-create it with the --no-site-package? If you use pip then you can use pip freeze > requirements.pip to generate a requirements file to re-install into your new virtualenv.