Skip to content

Instantly share code, notes, and snippets.

@dennislwy
dennislwy / install_raspberry_python3.sh
Last active December 4, 2023 01:32 — forked from vbe0201/raspberry_python.sh
A shell script for installing Python 3.x.x on your Raspberry Pi.
#!/bin/bash
# A bash script for installing Python 3.x.x on your Raspberry Pi.
# (c) 2023 Dennis Lee
#
# Open your terminal and type the following command:
# wget https://gist.githubusercontent.com/dennislwy/a91e83826d6d9c111c995765f3a6779c/raw/install_raspberry_python3.sh -O install_raspberry_python3.sh && chmod +x install_raspberry_python3.sh && ./install_raspberry_python3.sh
#set -e # Exit immediately if a command exits with a non-zero status.