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