Make smart futures avoid polling.
[python_utils.git] / pip_install.sh
1 #!/bin/bash
2
3 set -e
4
5 python3 -m ensurepip --upgrade
6 for x in pip wheel aiohttp antlr4-python3-runtime astral bankroll bitstring python-dateutil \
7              grpcio holidays cloudpickle dill numpy pandas protobuf psutil pyserial pytype \
8              pychromecast requests SpeechRecognition sklearn scikit-learn nltk; do
9     echo "--- Installing ${x} ---"
10     pip install -U ${x}
11 done