+1 vote
in Operating Systems by (13.2k points)
Is there any Conda or Linux command to list all existing Conda environments on my machine?

1 Answer

+4 votes
by (63.4k points)
edited by
 
Best answer

To list all existing Conda environments on your machine, you can run the following command on the terminal:

conda env list

If you have activated any Conda environment, that will be shown with '*'.

You can also use the following command:

conda info --envs

Related questions

+1 vote
1 answer
+1 vote
1 answer
+3 votes
1 answer

...