I’m trying to use the watchdog with dev-mode python: https://github.com/info-beamer/package-sdk/tree/master/dev-mode
but I get an error:
File "dev-mode.py", line 42, in <module>
import requests
ImportError: No module named requests
I’m trying to use the watchdog with dev-mode python: https://github.com/info-beamer/package-sdk/tree/master/dev-mode
but I get an error:
File "dev-mode.py", line 42, in <module>
import requests
ImportError: No module named requests
What OS are you using? That tool requires the requests library installed.
On an Ubuntu Linux, it can be installed using apt install python3-requests
.
I’m using Windows 10
Not sure how that works there. You might try:
python3 -m pip install requests
Finally got it working (using wsl on Windows 10), but apparently a lot of features are not support
Like:
util.json_watch(“config.json”
Ok - back to the “old” way
I guess that doesn’t refer to the dev-mode tool but to the outdated opensource info-beamer version? If so, that’s no longer maintained and feature-wise totally out of date.