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
// Modvius Neuro Compute Stick setup (from PyImageSearch real-time NCS tutorial) | |
// On fresh Pi Raspbian Stretch install as root do: | |
apt-get update || apt-get upgrade | |
apt-get install libusb-1.0-0-dev libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler libatlas-base-dev git automake byacc lsb-release cmake libgflags-dev libgoogle-glog-dev liblmdb-dev swig3.0 graphviz libxslt-dev libxml2-dev gfortran | |
// then install python3 stuff: | |
apt-get install python3-dev python-pip python3-pip python3-setuptools python3-markdown python3-pillow python3-yaml python3-pygraphviz python3-h5py python3-nose python3-lxml python3-matplotlib python3-numpy python3-protobuf python3-dateutil python3-skimage python3-scipy python3-six python3-networkx python-opencv | |
// then install python modules: (may need to use pip3, these worked and my Pi3B+ defaults to using Python 2.7 | |
pip install imutils |