Skip to main content

Installation

OpenDroneMap can be installed on various operating systems, including Linux. The installation process typically involves the following steps:

Linux (Ubuntu/Debian)

  1. Install the required dependencies

  2. sudo apt-get update sudo apt-get install -y git cmake g++ python3-dev python3-pip

  3. Clone the OpenDroneMap repository

  4. git clone https://github.com/OpenDroneMap/ODM.git

  5. Change to the ODM directory and install the Python dependencies

  6. cd ODM python3 -m pip install -r requirements.txt

  7. Build and install OpenDroneMap

    mkdir build && cd build cmake .. make -j$(nproc) sudo make install