# Download Miniconda
wget <https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh>
# Run installer
bash Miniconda3-latest-Linux-x86_64.sh
# Follow prompts:
# - Press ENTER to scroll through license
# - Type 'yes' to accept license
# - Choose install location (default: ~/miniconda3)
# - Type 'yes' to initialize conda
# Apply changes without restarting terminal
source ~/.bashrc
# Verify installation
conda --version
Download Miniconda for Windows:
https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
Run the .exe installer.
Open Anaconda Prompt or PowerShell, then verify:
conda --version
conda update conda
y to confirm.conda create -n myenv python=3.10
myenv with your environment name.