https://github.com/akvo/streamlit-test-app
https://github.com/akvo/streamlit-test-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/akvo/streamlit-test-app
- Owner: akvo
- Created: 2025-09-11T13:29:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-09-11T17:35:28.000Z (4 months ago)
- Last Synced: 2025-09-11T19:23:29.897Z (4 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Streamlit Test App
## Quick Start
### Run Locally
1. **Set up your environment**:
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```
2. **Install dependencies**:
```bash
pip install -r requirements.txt
```
3. **Run the app**:
```bash
streamlit run app.py
```
4. **Open your browser** to `http://localhost:8501`
## Troubleshooting
### Local Development Issues
Common local development solutions:
```bash
# Reinstall dependencies
pip install --upgrade -r requirements.txt
# Check Python version (requires 3.8+)
python --version
# Clear Streamlit cache
streamlit cache clear
# Run with verbose output
streamlit run app.py --logger.level=debug
```