You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As best I can tell, the issue is because in /plantsaver/Dockerfile.template --install-options is used on line 15 and forces pip to use setuptools’s install command, which is deprecated.
I believe the problem is rooted in the deprecated Adafruit_DHT library. It relies on setuptools to install dependencies.
The best solution appears to be using the current adafruit-circuitpython-dht library instead
The text was updated successfully, but these errors were encountered:
Posted in Building a smart houseplant monitor (and waterer)
As best I can tell, the issue is because in /plantsaver/Dockerfile.template
--install-options
is used on line 15 and forces pip to usesetuptools
’s install command, which is deprecated.I believe the problem is rooted in the deprecated Adafruit_DHT library. It relies on
setuptools
to install dependencies.The best solution appears to be using the current
adafruit-circuitpython-dht
library insteadThe text was updated successfully, but these errors were encountered: