In virtualenvwrapper, is there a simple way to list all virtualenv on my machine?

(like what yolk -l does to list all python packages in the current virtual environment?)

CLARIFICATION: "ls -la" in my env directory does not count. I am looking for a virtualenv or virtualenvwrapper specific command.

link|improve this question

feedback

2 Answers

in lsvirtualenv you have two options "long" and "brief":

"long" option is the default one, it searches if you have any hook for the the command, which takes more time.

"brief" just take the virtualenvs names and prints it

brief use:

$ lsvirtualenv -b

long use:

$ lsvirtualenv -l

if you don't have any hooks, or even don't what i'm talking about use "brief".

link|improve this answer
feedback
up vote 0 down vote accepted

Silly question. Found that there's a

lsvirtualenv

command which lists all existing virtualenv.

link|improve this answer
see the command reference doughellmann.com/docs/virtualenvwrapper/command_ref.html – zack Mar 17 at 20:03
yup. that's what i figured. should have rtfd... – Calvin Cheng Mar 18 at 3:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.