Skip to content

Instantly share code, notes, and snippets.

@wisehackermonkey
Last active June 23, 2020 21:50
Show Gist options
  • Save wisehackermonkey/0e002f8076466fe7fa76953d015397a0 to your computer and use it in GitHub Desktop.
Save wisehackermonkey/0e002f8076466fe7fa76953d015397a0 to your computer and use it in GitHub Desktop.
Install Software

how to update python from 3.5 -> 3.7 raspberry pi

sudo apt-get update
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
sudo md5sum Miniconda3-latest-Linux-armv7l.sh
sudo /bin/bash Miniconda3-latest-Linux-armv7l.sh
conda config --add channels rpi
conda install python=3.6 # notes 3.7 doesnt exist! as of (20200623)
conda create --name python36 python=3.6

link

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