Issue: Python dependencies are installed using package manager (-> globally) yet scripts in repository are obtaining path to interpreter from env, which, likely, will point to user's virtual environment, hence, missing dependencies.
Fix: use absolute path to system's Python interpreter in shebang (#!/usr/bin/python3).
Issue: Python dependencies are installed using package manager (-> globally) yet scripts in repository are obtaining path to interpreter from env, which, likely, will point to user's virtual environment, hence, missing dependencies.
Fix: use absolute path to system's Python interpreter in shebang (
#!/usr/bin/python3).