Installation
OpenDroneMap can be installed on various operating systems, including Linux. The installation process typically involves the following steps:
Linux (Ubuntu/Debian)
-
Install the required dependencies
-
sudo apt-get update sudo apt-get install -y git cmake g++ python3-dev python3-pip
-
Clone the OpenDroneMap repository
-
git clone https://github.com/OpenDroneMap/ODM.git
-
Change to the ODM directory and install the Python dependencies
-
cd ODM python3 -m pip install -r requirements.txt
-
Build and install OpenDroneMap
mkdir build && cd build cmake .. make -j$(nproc) sudo make install