You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The module's run.sh script uses pip to install a globally available package which is disabled on Ubuntu 24.04.
The new Ubuntu requires all packages to be installed in their own virtual environment which can be done via pipx or uv tool.
The text was updated successfully, but these errors were encountered:
I have a solution which uses the uv tool, as it's much much faster than pipx.
But it requires users to install uv on the machine running the script, for us it's easy as we're using Docker.
Would you want me to add that?
Maybe with a fallback to pipx if uv is not available.
The module's
run.sh
script uses pip to install a globally available package which is disabled on Ubuntu 24.04.The new Ubuntu requires all packages to be installed in their own virtual environment which can be done via
pipx
oruv tool
.The text was updated successfully, but these errors were encountered: