mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-06 06:25:06 +00:00
10 lines
291 B
Bash
10 lines
291 B
Bash
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
# make sure pip is available
|
|
"$PREFIX/bin/python" -m pip install --upgrade pip
|
|
|
|
# install extra deps
|
|
"$PREFIX/bin/python" -m pip install paho-mqtt opentrons_shared_data
|
|
"$PREFIX/bin/python" -m pip install git+https://github.com/Xuwznln/pylabrobot.git
|