Setting up a Conda environment

TLDR 1 conda create --name my_conda_env python=3.11 1 conda env list 1 conda activate my_conda_env 1 pip install <package_name> or 1 pip install -r requirements.txt What’s a conda environment? Knowing how to set up a Conda environment is an essential skill for any data scientist or Python developer. Conda is an open source package management system for Python. In this post, I will show you how to set up a Conda environment for your project, doing this, will help you to easily install and use any dependency you will need. ...

February 22, 2025 Â· 3 min Â· 493 words Â· Jorge Roldan