Working with Conda Environment
To create your first conda environment, follow the examples below after opening Terminal or command prompt, depending on your operating system.
Creating a new folder for your project
$ cd ~/Desktop
$ mkdir conda_tutorial
$ cd conda_tutorialCreating environment
$ conda create --name <your env name>
# replace "your env name" with whatever name you would like to call
# for your environment. It is always a good practice to name it
# the same as your projectActivating an existing environment
$ conda activate <your env name>Installing packages into an existing environment
$ conda install pip
# you can install pip and then use pip to install packages or can
# directly install using conda as follows
$ conda install pandas==<version>
# OR
$ pip install numpy==<version_num>Deactivating the current environment
Remove/Delete Conda environment
Last updated