Files
sunnypilot/tools/plotjuggler/install.sh
ShaneSmiskol a14fc7c5bd Support streaming in juggle.py (#20982)
* add --stream to juggle.py

* better

* rm old code

* for loopify

* clean up

* easier to pick out

* start by default

* don't exit

* Update tools/plotjuggler/juggle.py

Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>

* Revert "start by default"

This reverts commit 6cb481a6fdc2b401693a46be8d17553c1c00cc0f.

* Revert "don't exit"

This reverts commit 861b423eb8e259c8353586f3314ea8bad871f15a.

* rm

* move out of juggle_route

* Update PJ README.md

* Update tools/plotjuggler/README.md

* this is in the readme

* Updates

Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: 63e521935e
2021-05-20 20:19:06 -07:00

11 lines
259 B
Bash
Executable File

#!/bin/bash -e
mkdir -p bin
cd bin
for lib_name in libDataLoadRlog.so libDataStreamCereal.so plotjuggler; do
wget https://github.com/commaai/PlotJuggler/releases/download/latest/${lib_name}.tar.gz
tar -xf ${lib_name}.tar.gz
rm ${lib_name}.tar.gz
done