Search code examples
virtualenvvirtualenvwrappervirtualenv-commands

List all virtualenv created by virtualenvwrapper


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.


Solution

  • Silly question. Found that there's a

    lsvirtualenv
    

    command which lists all existing virtualenv.

    See the command documentation.