๐ Introduction
This article details the steps required to install Miniconda on Ubuntu, including downloading the installer and setting up the initial environment.
๐ Quick Start
1
| sudo wget -c https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
|
1
| sudo chmod +x Miniconda3-latest-Linux-x86_64.sh
|
1
| ./Miniconda3-latest-Linux-x86_64.sh
|
1 2
| conda activate conda env list
|
๐ Recap
- Miniconda is a minimal installer for conda, useful for managing environments and packages in Python.
- The installation process includes downloading the installer, making it executable, and running it to set up Miniconda.
- After installation, you can easily create and manage Python environments using conda commands.
๐ References