We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae640d0 commit df2f9bfCopy full SHA for df2f9bf
1 file changed
scripts/lobe-rpi-install.sh
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+#
3
+# Install Python3
4
+sudo apt -y update
5
+sudo apt install -y \
6
+ python3-dev \
7
+ python3-pip \
8
+ libatlas-base-dev \
9
+ libopenjp2-7 \
10
+ libtiff5 \
11
+ libjpeg62-turbo
12
+sudo apt-get install -y git
13
+# Install lobe-python
14
+sudo pip3 install setuptools
15
+sudo pip3 install git+https://github.com/lobe/lobe-python --no-cache-dir
0 commit comments