can I nest virtualenvs?

python, virtualenv

Solution

No, this isn't currently possible. There is a feature request and a patch for the functionality out there though:

https://github.com/pypa/virtualenv/issues/33

Problem

is it possible to nest 2 virtualenvs? I would like to have a base virtualenv and then a more specific virtualenv that accesses all the packages from the base virtualenv and then has its own. Any hint appreciated, thanks.

Original source

Related problems