summaryrefslogtreecommitdiff
path: root/pip_install.sh
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-29 09:03:57 -0700
committerScott Gasch <[email protected]>2021-09-29 09:03:57 -0700
commitd82c8377ce394cad812dc0d53829f7465b3f3f4e (patch)
tree182e7350b4c383274925bce6589b031d4c57fc4c /pip_install.sh
parent986d5f7ada15e56019518db43d07b76f94468e1a (diff)
Workaround likely client bug in letter_compress. Update tests in bst.
Add pip_install.sh.
Diffstat (limited to 'pip_install.sh')
-rwxr-xr-xpip_install.sh11
1 files changed, 11 insertions, 0 deletions
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