-
-
Save jangsoopark/5498f5274d0789558ceb1ddc902a5027 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt install build-essential zip unzip python3-pip python3-dev | |
sudo apt install python3-numpy | |
sudo apt install python3-opencv | |
sudo apt install python3-scipy | |
mkdir thirdparty | |
pushd thirdparty | |
wget https://dl.google.com/coral/edgetpu_api/edgetpu_runtime_20200128.zip | |
wget https://dl.google.com/coral/edgetpu_api/edgetpu-2.13.0-py3-none-any.whl | |
unzip edgetpu_runtime_20200128.zip | |
./edgetpu_runtime/install.sh | |
pip3 install edgetpu-2.13.0-py3-none-any.whl | |
popd | |
pip3 install cython | |
pip3 install pyyaml | |
pip3 install shapely | |
pip3 install pyDes | |
sudo apt install npm | |
npm install -g pm2 | |
pm2 install pm2-logrotate | |
pm2 set pm2-logrotate:compress true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment