Skip to content

Quick Setup for Development

Thomas Behan edited this page May 27, 2024 · 2 revisions

To quickly set up LesNet for development, follow these steps (Requires Python >=3.9<=3.11):

  1. Upgrade Your Packaging Tools: Ensure your pip and setuptools are up-to-date by running:

    python -m pip install --upgrade pip setuptools
  2. Install LesNet: In the project directory, install the project in editable mode with:

    python -m pip install -e .[testing]
  3. Run the Application: Start the application with auto-reloading using:

    pserve development.ini --reload
Clone this wiki locally