rmdhirr's picture
Upload 6 files
f7c7dc4 verified
chmod +x setup.sh
#!/bin/bash
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
# Upgrade pip
pip install --upgrade pip
# Install Python dependencies
pip install -r requirements.txt
# Download NLTK stopwords
python -c "import nltk; nltk.download('stopwords')"