mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# script directory
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
brew tap PX4/px4
|
|
brew install px4-dev
|
|
|
|
# python dependencies
|
|
sudo easy_install pip
|
|
pip install -r ${DIR}/requirements.txt
|
|
|
|
# Optional, but recommended additional simulation tools:
|
|
brew install px4-sim
|