Update setup.sh
Browse files
setup.sh
CHANGED
@@ -1,3 +1,14 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
pip install sentencepiece
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
pip install sentencepiece
|
4 |
+
|
5 |
+
|
6 |
+
# Install Rust
|
7 |
+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
8 |
+
source $HOME/.cargo/env
|
9 |
+
|
10 |
+
# Upgrade pip
|
11 |
+
pip install --no-cache-dir --upgrade pip
|
12 |
+
|
13 |
+
# Install Python dependencies
|
14 |
+
pip install --no-cache-dir -r requirements.txt
|