Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can't I find lsvirtualenv command?

I want to find how many virtual environments on my machine, and I ran:

lsvirtualenv

But received the error message:

-bash: lsvirtualenv: command not found

I didn't use anaconda to create my virtual environments.

like image 980
marlon Avatar asked Mar 11 '19 22:03

marlon


1 Answers

lsvirtualenv is a part of virtualenvwrapper.

pip install virtualenvwrapper

and follow installation instructions.

like image 105
phd Avatar answered Sep 24 '22 07:09

phd