virtualenvwrapper – List all virtualenv
virtualenvwrapper – List all virtualenv
You can use the lsvirtualenv
, in which you have two options long or brief:
long option is the default one, it searches for any hook you may have around this command and executes it, which takes more time.
brief just take the virtualenvs names and prints it.
brief usage:
$ lsvirtualenv -b
long usage:
$ lsvirtualenv -l
if you dont have any hooks, or dont even know what im talking about, just use brief.
To list all the virtual environments (if using the anaconda distribution):
conda info --envs
Hope my answer helps someone…
virtualenvwrapper – List all virtualenv
Silly question. Found that theres a
lsvirtualenv
command which lists all existing virtualenv.