File size: 251 Bytes
f5bb0c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
# install extra Python dependencies
# (must come after setup-venv)
BASEDIR=$(dirname $0)
source $BASEDIR/defaults.sh
if ! $WITH_PYTHON3 ; then
# Python2
:
else
# Python3
pip install --pre protobuf==3.0.0b3
pip install pydot
fi
|