diff --git a/docs/getting-started/installation.html b/docs/getting-started/installation.html index cc13f586..00c711d6 100644 --- a/docs/getting-started/installation.html +++ b/docs/getting-started/installation.html @@ -246,13 +246,21 @@
  • Navigate to the directory:
    cd Huntarr.io
  • +
  • Create and activate a virtual environment (recommended for Ubuntu 24.04+): +
    python3 -m venv huntarr-env
    +source huntarr-env/bin/activate  # On Windows: huntarr-env\Scripts\activate
    +
  • Install Python dependencies:
    pip install -r requirements.txt
  • Run the application: -
    python run.py
    +
    python3 main.py
  • + +
    + Note for Ubuntu 24.04+ users: Modern Ubuntu versions require the use of virtual environments to prevent conflicts with system packages. The virtual environment step is highly recommended to avoid installation issues. +