11

Silly question...I created a virtualenv months ago and can't remember what it's called. Where can I find it?

  • OSX 10.7
  • Python 2.7.1
  • Virtualenv 1.6.4

Thanks!

Michael
  • 8,920
  • 3
  • 38
  • 56
carlmonday
  • 251
  • 1
  • 5
  • 13

2 Answers2

14

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
Community
  • 1
  • 1
Bengineer
  • 7,264
  • 7
  • 27
  • 28
3

Creating a virtualenv actually creates a new folder with that name. You have to find that folder.

Michael
  • 8,920
  • 3
  • 38
  • 56