Update on_startup.sh
Browse files- on_startup.sh +5 -3
on_startup.sh
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
#!/bin/bash
|
2 |
apt update && apt upgrade
|
3 |
apt install wget
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
7 |
# Write some commands here that will run on root user before startup.
|
8 |
# For example, to clone transformers and install it in dev mode:
|
9 |
# git clone https://github.com/huggingface/transformers.git
|
|
|
1 |
#!/bin/bash
|
2 |
apt update && apt upgrade
|
3 |
apt install wget
|
4 |
+
pip install tensorflow
|
5 |
+
pip install sentencepiece
|
6 |
+
pip install keras_nlp
|
7 |
+
pip install pandas
|
8 |
+
pip install huggingface_hub
|
9 |
# Write some commands here that will run on root user before startup.
|
10 |
# For example, to clone transformers and install it in dev mode:
|
11 |
# git clone https://github.com/huggingface/transformers.git
|