Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alexlib/1699faee3d6dec37ed0582044c235ec8 to your computer and use it in GitHub Desktop.
Save alexlib/1699faee3d6dec37ed0582044c235ec8 to your computer and use it in GitHub Desktop.
Build shell script for the complete installation from the source of the liboptv and openptv-python
git clone git://github.com/OpenPTV/openptv.git
cd openptv/liboptv
mkdir build && cd build
cmake ../
make
make verify
sudo make install
cd ../../py_bind
python setup.py build_ext --inplace -I/usr/local/include -L/usr/local/lib
python setup.py install
git clone git://github.com/OpenPTV/openptv-python.git
cd openptv-python/pyptv_gui
python setup.py build_ext --inplace -I/usr/local/include -L/usr/local/lib
python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment