File size: 286 Bytes
322575d b66a982 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
pip install sentencepiece
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
# Upgrade pip
pip install --no-cache-dir --upgrade pip
# Install Python dependencies
pip install --no-cache-dir -r requirements.txt
|