From d82c8377ce394cad812dc0d53829f7465b3f3f4e Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 29 Sep 2021 09:03:57 -0700 Subject: Workaround likely client bug in letter_compress. Update tests in bst. Add pip_install.sh. --- pip_install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 pip_install.sh (limited to 'pip_install.sh') diff --git a/pip_install.sh b/pip_install.sh new file mode 100755 index 0000000..9d40902 --- /dev/null +++ b/pip_install.sh @@ -0,0 +1,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 -- cgit v1.3