Skip to content

Instantly share code, notes, and snippets.

@alien18331
alien18331 / Install Python 3.10.x on Ubuntu 20.04.md
Last active May 28, 2024 05:45 — forked from rutcreate/README.md
Install Python 3.10.x on Ubuntu 20.04

Prerequisite

sudo apt update
sudo apt install software-properties-common -y

Add custom APT repository

@alien18331
alien18331 / Install OpenCV 4.1.2 on Raspbian Buster
Last active November 27, 2019 07:49 — forked from willprice/README.md
Install OpenCV 4.1.2 for Raspberry Pi 3 or 4 (Raspbian Buster)
Install OpenCV 4.1.2 on Raspbian Buster
```bash
$ chmod +x *.sh
$ ./download-opencv.sh
$ ./install-deps.sh
$ ./build-opencv.sh
$ cd ~/opencv/opencv-4.1.2/build
$ sudo make install
```