DEV Community

Saoni Deb
Saoni Deb

Posted on

2 2

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

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

👥 Ideal for solo developers, teams, and cross-company projects

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay