Installing Anaconda on Raspberry Pi 4 with Ubuntu 20.04

Raspberry Pi 4 runs on 32-bit. Use the 32-bit versions and you should be okay!

I’ve recently installed miniconda on my Raspberry Pi 4. I did it using the following commands:

# Update linux
sudo apt update -y

# Install python3
sudo apt install -y python3

# Download miniconda installation (32-bit version)
curl "https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-armv7l.sh" -o "Miniconda.sh"

# Run miniconda installation
bash ./Miniconda.sh

Once you’ve done this, I would also recommend doing the following after

你可能感兴趣的:(Ubuntu,Linux)