Forked from anonymous/build_liboptv_openptv-python.sh
Created
August 31, 2016 14:02
-
-
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
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
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