Hello,
I had found a documentation bug in the Linux installation guide (Section 2.2.2 "Installation of required dependencies"):
-
Wrong Pip Flag: The installation command uses --index-url instead of --extra-index-url for the PyTorch repository. This completely overrides PyPI, causing pip to fail immediately when looking for scikit-learn and scipy with the following error:
ERROR: Could not find a version that satisfies the requirement scikit-learn
-
Missing Package: The text states that the plugin requires Remotior Sensus, but the package is completely missing from the provided pip3 command. This leads directly to a ModuleNotFoundError: No module named 'remotior_sensus' warning upon launching QGIS.
Location in Docs:
Section 2.2.2 (Linux Debian/Ubuntu)
Current broken command in documentation:
pip3 install scikit-learn scipy torch torchvision --index-url [https://download.pytorch.org/whl/cpu](https://download.pytorch.org/whl/cpu)
Corrected command should be:
pip3 install remotior-sensus scikit-learn scipy torch torchvision --extra-index-url [https://download.pytorch.org/whl/cpu](https://download.pytorch.org/whl/cpu)
Hello,
I had found a documentation bug in the Linux installation guide (Section 2.2.2 "Installation of required dependencies"):
Wrong Pip Flag: The installation command uses
--index-urlinstead of--extra-index-urlfor the PyTorch repository. This completely overrides PyPI, causingpipto fail immediately when looking forscikit-learnandscipywith the following error:ERROR: Could not find a version that satisfies the requirement scikit-learnMissing Package: The text states that the plugin requires Remotior Sensus, but the package is completely missing from the provided
pip3command. This leads directly to aModuleNotFoundError: No module named 'remotior_sensus'warning upon launching QGIS.Location in Docs:
Section 2.2.2 (Linux Debian/Ubuntu)
Current broken command in documentation:
Corrected command should be: