-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Installation
Dakota Benjamin edited this page Apr 11, 2017
·
13 revisions
Prerequisites:
- Requires Ubuntu 14.04+ OR a working Docker installation. See Docker Installation for instructions installing using Docker.
- Minimum 4GB of RAM
Install Git tools
sudo apt-get install git-core
Git Clone the repository
git clone https://github.com/OpenDroneMap/OpenDroneMap.git
cd OpenDroneMap
bash configure.sh install
mkdir build && cd build && cmake .. && make && cd ..
Check that the install script ends with script finished or something went wrong
Set environment variables:
Using your favorite editor, open ~/.bashrc and append the following to the bottom of the file (replace /your/path/OpenDroneMap with your installation path, e.g. /home/user/OpenDroneMap):
export PYTHONPATH=$PYTHONPATH:/your/path/OpenDroneMap/SuperBuild/install/lib/python2.7/dist-packages
export PYTHONPATH=$PYTHONPATH:/your/path/OpenDroneMap/SuperBuild/src/opensfm
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/your/path/OpenDroneMap/SuperBuild/install/lib
You will need to log out and back in again for the variables to set.