Reputation: 261
Silly question...I created a virtualenv months ago and can't remember what it's called. Where can I find it?
Thanks!
Upvotes: 11
Views: 15462
Reputation: 7742
I recommend you to use virtualenvwrapper, after install it you can do:
$ lsvirtualenv
I also recommend you to use -b
("brief" abreviation) option to go faster:
$ lsvirtualenv -b
Upvotes: 14
Reputation: 9068
Creating a virtualenv actually creates a new folder with that name. You have to find that folder.
Upvotes: 3