Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.2 KB

RunOnRaspberryPi.md

File metadata and controls

49 lines (36 loc) · 1.2 KB

Install 64 bit Ubuntu for Raspberry Pi 3B+

https://wiki.ubuntu.com/ARM/RaspberryPi

Download: ubuntu-18.04.2-preinstalled-server-arm64+raspi3.img.xz

Burn Image

Install Docker

https://www.raspberrypi.org/blog/docker-comes-to-raspberry-pi/

curl -sSL https://get.docker.com | sh

Setup Permission to use docker

https://docs.docker.com/install/linux/linux-postinstall/

Install docker-compose

sudo apt install docker-compose

Enable swap to get rid of freezed

Reference

apt-get install dphys-swapfile
vi /etc/dphys-swapfile

Set swap to 2048M

CONF_SWAPSIZE=2048

Restart service

/etc/init.d/dphys-swapfile restart

Get Deep Camera Source Code

git clone https://github.com/SharpAI/DeepCamera -b pi
cd DeepCamera/docker
./run-deepeye-raspberrypi.sh start

Then follow the instruction on the main readme