12 lines
225 B
Bash
12 lines
225 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Create a virtual environment (optional but recommended)
|
||
|
python -m venv quiz-env
|
||
|
source quiz-env/bin/activate
|
||
|
|
||
|
# Install the required packages
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
# Run the app
|
||
|
streamlit run app.py
|