Raspberry Pi4 python led test

less than 1 minute read

Raspi4 version : 20.04.3 LTS focal fossa Ubuntu Server

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y python-dev python-setuptools
sudo apt-get install gcc g++

Connect github first time

git init
git config --global user.email "your email"
git config --global user.name "desirable name"
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/[your github repogitory]
git push -u origin main

Clone github

git clone https://github.com/[your github repogitory]

Go to top

Leave a comment