Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.49 KB

mac-setup.md

File metadata and controls

33 lines (22 loc) · 1.49 KB

Mac - Initial Setup

Install Intel® Distribution of OpenVINO™ Toolkit

Refer to this page for more information about how to install and setup the Intel® Distribution of OpenVINO™ Toolkit for MacOS.

Install the following dependencies

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

FFmpeg

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