We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating to the recent version 1.0.1, I was seeing the error:
File "/home/danny/robotvenv/lib/python3.11/site-packages/inventorhatmini/__init__.py", line 7, in <module> import gpiodevice ModuleNotFoundError: No module named 'gpiodevice'
On a fresh virtual env, install via pip (or update):
python -mpip install --upgrade inventorhatmini.
python -mpip install --upgrade inventorhatmini
Installing gpiodevice into that virtualenv seems to work: python -mpip install gpiodevice.
python -mpip install gpiodevice
I'm suspecting that adding it to the list at https://github.com/pimoroni/inventorhatmini-python/blob/main/pyproject.toml#L38 and republishing would do it.
The text was updated successfully, but these errors were encountered:
Proposed fix to pimoroni#10
af9027e
Add the dependency as a proposed fix for including the gpiodevice module in requirements.
No branches or pull requests
Updating to the recent version 1.0.1, I was seeing the error:
Reproducing
On a fresh virtual env, install via pip (or update):
python -mpip install --upgrade inventorhatmini
.Workaround
Installing gpiodevice into that virtualenv seems to work:
python -mpip install gpiodevice
.Suggested fix
I'm suspecting that adding it to the list at https://github.com/pimoroni/inventorhatmini-python/blob/main/pyproject.toml#L38 and republishing would do it.
The text was updated successfully, but these errors were encountered: