Steps to create a virtual environment in Ananconda

saonideb

Saoni Deb

Posted on March 23, 2022

Steps to create a virtual environment in Ananconda

Create and activate virtual environment:

conda -V
conda update conda
conda create -n <venvname> python=<x.x> anaconda
conda activate <venvname>
conda deactivate
Enter fullscreen mode Exit fullscreen mode

Install package in your venv:

conda install -n <venvname> <package>
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
saonideb
Saoni Deb

Posted on March 23, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related