Refer to this page for more information about how to install and setup the Intel® Distribution of OpenVINO™ Toolkit for MacOS.
- Navigate to the Node.js download page and install the MacOS version. This should also install
npm
along withnode
. - Verify installation in a terminal with
node -v
andnpm -v
(it should show the installed version).
First, make sure you have Homebrew installed on your machine.
Then, download a version of Python 3.5 from here. The project code is pre-compiled with the OpenVINO™ Toolkit to best work with Python 3.5. You can then follow the additional steps here to add pip3
on your Mac (making sure you stick with Python 3.5 - you do not need to install this again).
Next, run the following from the terminal:
pip3 install numpy
pip3 install paho-mqtt
brew install cmake
brew install zeromq
This project makes use of FFmpeg’s ffserver
functionality, which was deprecated in an older version. As such, a new install of ffmpeg will not include it if you do it directly from brew. You can use the below to install the older version containing
ffserver`, as detailed in this post.
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
git checkout 2ca65fc7b74444edd51d5803a2c1e05a801a6023
./configure
make -j4
Follow the instructions in the main README file under “Install npm” to make sure the relevant NPM libraries are installed for the included Node servers.