X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pip_install.sh;h=1ee08c97de1e53b6642fb356373331a32bb62f68;hb=d29fd1c72456b3c81ffeccd7994c5a65c91a81ed;hp=9d40902b1736ce1af64c4a70fe547709024490c9;hpb=d82c8377ce394cad812dc0d53829f7465b3f3f4e;p=python_utils.git diff --git a/pip_install.sh b/pip_install.sh index 9d40902..1ee08c9 100755 --- a/pip_install.sh +++ b/pip_install.sh @@ -1,10 +1,12 @@ #!/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 bitstring python-dateutil \ - grpcio holidays cloudpickle dill numpy protobuf psutil pyserial pytype \ +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}