Spaces:
Running
Running
File size: 493 Bytes
b7b041e | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash
# IMPORTANT: Replace the path below with the actual path to your miniconda/anaconda installation
# This ensures the 'conda' command is available to the script.
source /Users/mariamalmutairi/miniconda3/etc/profile.d/conda.sh
# Activate your specific Python environment
conda activate nlp
# Run the streamlit app. The '--server.headless true' flag is a good practice
# as it prevents Streamlit from opening a new browser tab on its own.
streamlit run app.py --server.headless true |