diff --git a/README.md b/README.md index 2431020..3282b74 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ Within this installation includes the new HBMonv2 by Weldek SP2ONG - The systemd service automatically uses the virtual environment's Python interpreter - This approach eliminates "externally-managed-environment" errors and conflicts with system packages -**Debian 10-11:** Standard pip installation to system Python is used for backward compatibility. +**Debian 11:** Standard pip installation to system Python is used for backward compatibility, as PEP 668 restrictions don't apply to Debian 11. This ensures clean, maintainable installations that follow modern Python best practices while maintaining compatibility with older Debian versions. diff --git a/hblink3-docker-install.sh b/hblink3-docker-install.sh index 34ec281..bc3d6ca 100755 --- a/hblink3-docker-install.sh +++ b/hblink3-docker-install.sh @@ -280,7 +280,7 @@ pip_install() { return 1 fi else - # For Debian 10-11, use standard pip installation + # For Debian 11, use standard pip installation (pre-PEP 668) echo "Installing Python packages for Debian $VERSION: $args" if pip3 install $args; then echo "Successfully installed: $args"