Skip to content

Instantly share code, notes, and snippets.

@simoncos
Last active August 9, 2023 07:18
Show Gist options
  • Star 54 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save simoncos/a7ce35babeaf73f512be24135c0fbafb to your computer and use it in GitHub Desktop.
Save simoncos/a7ce35babeaf73f512be24135c0fbafb to your computer and use it in GitHub Desktop.
Install Miniconda 3 on Raspberry Pi

refer to: https://stackoverflow.com/questions/39371772/how-to-install-anaconda-on-raspberry-pi-3-model-b

{USER}: pi

Install Miniconda 3:

wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
sudo md5sum Miniconda3-latest-Linux-armv7l.sh # (optional) check md5
sudo /bin/bash Miniconda3-latest-Linux-armv7l.sh # -> change default directory to /home/pi/miniconda3
sudo nano /home/pi/.bashrc # -> add: export PATH="/home/pi/miniconda3/bin:$PATH"
sudo reboot -h now

Test:

conda
python --version

If Conda update miss permission of the directory:

sudo chown -R pi miniconda3
@naim5am
Copy link

naim5am commented Feb 6, 2022

https://www.raspberrypi.com/news/raspberry-pi-os-64-bit/
Few days ago, Feb 2nd, Raspberry Pi OS is out of beta. I think it's worth trying official Conda install methods again. I will update this comment with results.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment