Reputation: 53
I installed a virtual environment as per: http://docs.python-guide.org/en/latest/dev/virtualenvs/
I stopped working on the project for a few days and can't remember the name of the environment. How can I find out the name? I've done some searchign and came across this exact question here:
Forgot virtualenv name - how to find the name of the virtual env?
When I try the suggestions the terminal just says the command doesn't exist.
Upvotes: 3
Views: 10633
Reputation: 529
To find the lost Django virtual Environments. in the terminal type the command : lsvirtualenv or in Windows Operating System you are able to see it in File Explorer
C:\Users<User Name>\Envs\
Upvotes: 0
Reputation: 501
If you are using conda try this at the command prompt:
conda env list
This should give you a summary of all accessible environment which you have created.
Upvotes: 2
Reputation: 1
From my bash terminal, I type ls
and it lists all of my directories from there, including my virtual environments. If you do not see your virtual environments listed, try changing directory into the folder that it is contained in.
Upvotes: 0