Local Installation#

Installing via Poetry#

  1. Install Python 3.11: Official Website.

  2. Install Poetry for your system by following the official guide: Poetry Installation. Remember to add Poetry to your Path.

  3. In the terminal, run poetry config virtualenvs.in-project true.

  4. Clone the repository to your local machine and navigate to its root folder using cd.

  5. In the terminal, run poetry install --without dev for basic usage or poetry install --with docs,tests for development (comma-separated without spaces). On Windows, include windows in the --with flag; this is necessary for TensorFlow to function correctly.

  6. Start the app by running streamlit run src/mlui/''$'\360\237\217\240''_Home.py'. Access the app by navigating to the provided URL.

  7. To stop the app, press Ctrl+C in the terminal. You can restart it using the previous step.