On Saturday, July 17, 2021 at 1:38:02 PM UTC-7 Elie R wrote:
> File "/usr/share/weewx/user/bme280wx.py", line 6, in <module> > import bme280 > ModuleNotFoundError: No module named 'bme280' > > This one seems like you didn't install the bme280 module for the version of python (2 or 3) that weewx is using. A quick search points to https://pypi.org/project/RPi.bme280/ for installation instructions. You might try a couple simple tests. - python -c "import bme280" - python3 -c "import bme280" You should get an error if that version of python does not have the module installed. -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/e5bbe75b-22e5-4e0d-9d1e-02732770dbd8n%40googlegroups.com.
