Skip to content

Installation in OSX

mattloper edited this page Sep 7, 2014 · 1 revision

The instructions below are intended for someone with minimal experience. As implied below, OpenDR requires Xcode, OpenCV with python, and a few PyPI packages. If you already have some of these items, you may omit them.

  1. To install Xcode, type the following in a terminal. If it complains that it "Can't install the software...", don't worry; that likely means that it is already installed:

    xcode-select --install
    
  2. The easiest way to install OpenCV is to first install homebrew by following the instructions at the bottom of the homebrew web page. Once homebrew is installed, install OpenCV:

    brew install opencv
    
  3. Then install pip:

    sudo easy_install pip
    
  4. Finally, install OpenDR:

    sudo pip install opendr
    

Note: If you ever wish to uninstall OpenDR, you may run the following:

sudo pip uninstall opendr
Clone this wiki locally