[tutorial] Setting up Miniconda on Ubuntu

๐Ÿ“Œ 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

[tutorial] Setting up Miniconda on Ubuntu

https://hsiangjenli.github.io/blog/tutorial_ubuntu_miniconda/

Author

Hsiang-Jen Li & ChatGPT-4o Mini

Posted on

2023-02-13

Updated on

2025-02-28

Licensed under