Create virtualenv in existing directory without creating a "local" directory
Not sure if it is still helpful, but you can do this.
virtualenv .
Install was fine with me.
This just happens on some platforms (like Ubuntu) and is necessary because a virtualenv imitates the machine's installation, and local
is part of that. Just add it to your SCM's ignore facility (e.g. .gitignore
).