List All Created Virtual Environments in Conda – Anaconda Tutorial

By | May 9, 2022

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:

Use Anaconda Navigator to list all virtual environments

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:

conda env list to list all virtual environments

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

Leave a Reply