summaryrefslogtreecommitdiff
path: root/pip_install.sh
blob: 9d40902b1736ce1af64c4a70fe547709024490c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

python3 -m ensurepip --upgrade
for x in pip wheel aiohttp antlr4-python3-runtime astral bitstring python-dateutil \
             grpcio holidays cloudpickle dill numpy protobuf psutil pyserial pytype \
             pychromecast requests SpeechRecognition sklearn scikit-learn nltk; do
    echo "--- Installing ${x} ---"
    pip install -U ${x}
done