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