Spaces:
Runtime error
Runtime error
File size: 686 Bytes
f87df0a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
To run the Glaucoma Image Classifier app locally, follow these steps:
1. Clone the repository to your local machine.
2. Navigate to the project directory.
3. Create a virtual environment (optional but recommended):
```
python3 -m venv venv
```
4. Activate the virtual environment:
- For Windows:
```
venv\Scripts\activate
```
- For macOS/Linux:
```
source venv/bin/activate
```
5. Install the required Python packages:
```
pip install -r requirements.txt
```
6. Run the Streamlit app:
```
streamlit run app.py
```
7. Access the app in your web browser at the provided local URL (usually http://localhost:8501).
|