Spaces:
Sleeping
Sleeping
File size: 241 Bytes
c2becd4 | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
cd "$(dirname "$0")"
source venv/bin/activate
echo "Checking for Jupyter..."
pip install jupyter --quiet
echo "Opening notebook..."
jupyter notebook spam_classifier_liquid.ipynb
echo ""
echo "Press any key to close..."
read -n 1
|