Spaces:
Runtime error
Runtime error
| 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). | |