Skip to content

Conda Installation

1. Choose a Python distribution

To run executable Python code blocks in Liii STEM, make sure at least one Python environment is available. For beginners, Anaconda is recommended because it is easy to install and manage.

2. Download and install

2.1 A. Terminal package manager (advanced users)

macOS (zsh + Homebrew)

bash
# Install Anaconda
brew install --cask anaconda
# Enable conda auto-activation
conda init zsh
# Restart terminal and verify
conda --version

2.1 B. Download installer package

Go to https://www.anaconda.com/download and download the installer for your OS.

conda-official-website

Sign in or register first.

conda-sign-up

Choose Anaconda on the left and download.

conda-download

2.2 Windows installation

Run the installer.

conda-windows-installation

Click I Agree.

conda-windows-license

Choose Just Me.

conda-windows-user

Liii STEM can detect the default install path automatically.

conda-windows-path

Select all options and click Install. Ensure Add Anaconda to my PATH environment variable is checked.

conda-windows-options

Installation may take 5-10 minutes.

conda-windows-wait

Click Finish.

conda-windows-complete

2.3 macOS installation

Run the installer and click Continue.

conda-macos-installation

Accept the license.

conda-macos-license

Use the default path and click Install.

conda-macos-path

Enter your password and continue.

conda-macos-password

Click Close when done.

conda-macos-complete

3. Verify installation

3.1 Windows

Press Win + R, run cmd.

conda-windows-run

Run:

bash
conda --version

If output looks like the screenshot below, installation succeeded.

conda-windows-vertification

3.2 macOS

Press Command + Space, search terminal.

conda-macos-search

Run:

bash
conda --version

If output is normal, installation succeeded.

conda-macos-vertification

4. Create a conda environment

Liii STEM supports both base and custom conda environments.

Open Anaconda Navigator:

navigator

Go to Environments:

environment

Click Create, set environment name and Python version, and create it.

create

sympy currently does not support Python 3.14. Use Python 3.13 or earlier.

Select the new environment. Switch the filter from Installed to All.

installed-all

Install these packages: matplotlib, pandas, numpy, sympy.

matplotlib

pandas

numpy

sympy

Click Apply.

apply

Confirm again and wait for installation.

check