Body
Question
How do I create a virtual conda environment from the Anaconda Prompt command line interface (CLI) in Windows and Mac?
Answer
1. From the command line (CLI) in the base environment, enter "conda create -n venv_3_13 python=3.13" to create environment.
Example environment: venv_3_13
A prompt to proceed will be displayed and require "y". A new environment is then created.
2. Enter "conda info --envs" to list conda environments. New example environment is listed.
Example environment: venv_3_13