In my case, the error was that i was running the script using pytest test_example.py
and pytest was installed using pipx and thus executed the script in a separate venv.
pip install pytest
fixed it, probably also helps for other binaries that run Python like flask or uwsgi.