In this tutorial, we will introduce you two methods to list all created virtual environments in conda (Anaconda).
Method 1: Use Anaconda Navigator
We can open Anaconda navigator to list all virtual environments that have created.
Here is an example:
Here env_py36 and env_py37 are two virtual environments we have created in Anaconda.
Method 2: Use conda command
We can use command below to list all virtual environments.
conda env list
Run this code, we will see:
If conda command does not work, you can read this tutorial to fix:
A Simple Guide to Add conda Command into Windows PATH Environment – Python Tutorial