You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
305 B
14 lines
305 B
#! /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 |
|
sudo -H pip install -r ${DIR}/requirements.txt |
|
|
|
# Optional, but recommended additional simulation tools: |
|
brew install px4-sim
|
|
|