Experiment with audit events in bootstrap.
[python_utils.git] / pip_install.sh
1 #!/bin/bash
2
3 # Install a bunch of pip modules that scott library depends upon.
4
5 set -e
6
7 python3 -m ensurepip --upgrade
8 for x in pip wheel aiohttp antlr4-python3-runtime astral bankroll bitstring python-dateutil \
9              grpcio holidays cloudpickle dill numpy pandas protobuf psutil pyserial pytype \
10              pychromecast requests SpeechRecognition sklearn scikit-learn nltk; do
11     echo "--- Installing ${x} ---"
12     pip install -U ${x}
13 done