Conda
  • is a system package manager
  • you can install much more than just Python libraries. You can install entire software stacks such as Python + Django + Celery + PostgreSQL + nginx. You can install R, R libraries, Node.js, Java programs, C and C++ programs and libraries, Perl programs, the list is pretty long and limitless

Installation

Usage

Create python virtual environment

conda create -n py310 python=3.10

Activate environment

conda activate py310
python --version

Deactivate environment

conda deactivate