adafruit / Adafruit_Python_DHT

Python library to read the DHT series of humidity and temperature sensors on a Raspberry Pi or Beaglebone Black.
MIT License
1.12k stars 980 forks source link

Failed pip Install of Adafruit_Python_DHT on Raspbian Stretch #99

Closed TheCedarPrince closed 6 years ago

TheCedarPrince commented 6 years ago

Hey all,

I am having an issue installing the Adafruit Python DHT library via pip3 on the Raspbian Stretch (specs below).

Basically, I am trying to install it via pip and I am getting a compilation error at "arm-linux-gnueabihf-gcc" saying that some drivers, which should have been built during install, are not there.

I was able to successfully install this from a direct install (e.g. clone the repository and run 'sudo python3 set_up.py install'). My suspicion is something is up with the build-essential package, but I have updated that package as well as python-dev per Adafruit's recommendations.

Any thoughts of what could be going on?

~ TheCedarPrince

Specs:

The main suspect lines are these:

'arm-linux-gnueabihf-gcc: error: source/_Raspberry_Pi_2_Driver.c: No such file or directory' 'arm-linux-gnueabihf-gcc: fatal error: no input files compilation terminated.'

The rest of the dump is here:

https://pastebin.com/9CazaEDk

I executed the following on my RPi:

'sudo apt-get install build-essential' 'sudo apt-get install python-dev' 'pip3 install Adafruit_Python_DHT'

I also tried the following pip commands to no avail:

'pip install Adafruit_Python_DHT' 'sudo pip3 install Adafruit_Python_DHT' 'sudo pip install Adafruit_Python_DHT'

migromao commented 6 years ago

Hi , I've just upgrade to 0.73 and have an issue saying sensor.dht is trying to install requirements are imcompatible with

to whom should I get in contact with ?

the sensor author or DEVs ?

its Adafruit requirements library

ERROR (Thread-2) [homeassistant.util.package] Unable to install package Adafruit_Python_DHT==1.3.2

keitetran commented 6 years ago

+1

show1990 commented 6 years ago

+1

trickv commented 6 years ago

Same issue here, on Raspbian Jessie. It looks to me like the latest package pushed to pypi isn't complete; it doesn't contain any of the .c source files which are causing the compile to fail.

[trick@radiopi ~]$ sudo pip3 install Adafruit_Python_DHT
Collecting Adafruit_Python_DHT
  Using cached https://files.pythonhosted.org/packages/52/aa/418b82e36fc57316137679c2a12b8bae89ab73f211cbca91a3275e0b5fc2/Adafruit_Python_DHT-1.3.2.tar.gz                                                          
Building wheels for collected packages: Adafruit-Python-DHT                                                                                                                                                         
  Running setup.py bdist_wheel for Adafruit-Python-DHT ... error
  Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-h9ul_fqm/Adafruit-Python-DHT/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace(
'\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp2xj1osh9pip-wheel- --python-tag cp35:                                                                                         
  running bdist_wheel
  running build
  running build_py
  creating build                                                                                                                                                                                                    
  creating build/lib.linux-armv7l-3.5                                                                                                                                                                               
  creating build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/Test.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/Raspberry_Pi_2.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/Beaglebone_Black.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/common.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/platform_detect.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/Raspberry_Pi.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  copying Adafruit_DHT/__init__.py -> build/lib.linux-armv7l-3.5/Adafruit_DHT
  running build_ext
  building 'Adafruit_DHT.Raspberry_Pi_2_Driver' extension
  creating build/temp.linux-armv7l-3.5
  creating build/temp.linux-armv7l-3.5/source
  creating build/temp.linux-armv7l-3.5/source/Raspberry_Pi_2
  arm-linux-gnueabihf-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -g -fdebug-prefix-map=/build/python3.5-RUbMX3/python3.5-3.5.3=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate
-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.5m -c source/_Raspberry_Pi_2_Driver.c -o build/temp.linux-armv7l-3.5/source/_Raspberry_Pi_2_Driver.o -std=gnu99
  arm-linux-gnueabihf-gcc: error: source/_Raspberry_Pi_2_Driver.c: No such file or directory
  arm-linux-gnueabihf-gcc: fatal error: no input files
  compilation terminated.
  error: command 'arm-linux-gnueabihf-gcc' failed with exit status 1

The published tar archive doesn't even contain the .c files:

[trick@radiopi ~/tmp/a]$ curl -s https://files.pythonhosted.org/packages/52/aa/418b82e36fc57316137679c2a12b8bae89ab73f211cbca91a3275e0b5fc2/Adafruit_Python_DHT-1.3.2.tar.gz  | tar xfvz -
Adafruit_Python_DHT-1.3.2/
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/Beaglebone_Black.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/common.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/platform_detect.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/Raspberry_Pi.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/Raspberry_Pi_2.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/Test.py
Adafruit_Python_DHT-1.3.2/Adafruit_DHT/__init__.py
Adafruit_Python_DHT-1.3.2/Adafruit_Python_DHT.egg-info/
Adafruit_Python_DHT-1.3.2/Adafruit_Python_DHT.egg-info/dependency_links.txt
Adafruit_Python_DHT-1.3.2/Adafruit_Python_DHT.egg-info/PKG-INFO
Adafruit_Python_DHT-1.3.2/Adafruit_Python_DHT.egg-info/SOURCES.txt
Adafruit_Python_DHT-1.3.2/Adafruit_Python_DHT.egg-info/top_level.txt
Adafruit_Python_DHT-1.3.2/PKG-INFO
Adafruit_Python_DHT-1.3.2/setup.cfg
Adafruit_Python_DHT-1.3.2/setup.py
Adafruit_Python_DHT-1.3.2/source/
Adafruit_Python_DHT-1.3.2/source/Test/
Adafruit_Python_DHT-1.3.2/source/Test/test_dht_read.c
Adafruit_Python_DHT-1.3.2/source/_Test_Driver.c

I think the package build process isn't right.

dade80vr commented 6 years ago

+1 same issue here

brennen commented 6 years ago

Good call, @trickv. Will get a version with included *.c up shortly.

pptp-plg commented 6 years ago

"pip3 install Adafruit_Python_DHT" Error can't install from https://pypi.org/project/Adafruit_Python_DHT

brennen commented 6 years ago

Should be fixed with merge of #67. v1.3.3 now uploaded to PyPI.

pptp-plg commented 6 years ago

in https://pypi.org/project/Adafruit_Python_DHT show 1.3.2 lasted version

nhorvath commented 6 years ago

@brennen It's not showing in pypi.

geofbaum commented 6 years ago

That's because I believe he updated this one which was the one they were using before they got the access rights that are mentioned here (#77).

The other one is updated to 1.3.3: https://pypi.org/project/Adafruit-DHT/

pptp-plg commented 6 years ago

please update Adafruit_Python_DHT too ,for home assistant

nhorvath commented 6 years ago

@geofbaum does that mean the package in home assistant should be changed to Adafruit-DHT?

Because this definitely doesn't work:

pip install Adafruit_Python_DHT==1.3.3
Collecting Adafruit_Python_DHT==1.3.3
  Could not find a version that satisfies the requirement Adafruit_Python_DHT==1.3.3 (from versions: 1.1.0, 1.1.1, 1.1.2, 1.3.2)
No matching distribution found for Adafruit_Python_DHT==1.3.3
geofbaum commented 6 years ago

@nhorvath No I was just simply stating that @brennen might have only updated the pypi project that he did because that was the one that was originally controlled by Adafruit as the one that is linked to above Adafruit_Python_DHT was not until recently controlled by Adafruit as mentioned in the issue that I linked. He might not have noticed that they are in charge of both of them now, or you might need to ask for @ladyada or someone else if they have the access rights to update the other pypi project.

If it's an issue that another project relies on the other one that probably should be alerted to them as well in case something like this happens in the future. Just my two cents, and sorry for the confusion.

brennen commented 6 years ago

Hey everybody. Sorry, yeah, I missed that we were evidently updating... Both PyPI packages, I guess? I'm not actually sure what's going on there, but I'll get it sorted out.

In the meanwhile, Adafruit_Python_DHT has been manually updated to 1.3.3.

superpuffin commented 6 years ago

will both Adafruit-DHT and Adafruit_Python_DHT remain maintained? because Home assistant is upgrading to Adafruit-DHT==1.3.3 (see referenced pull request)

brennen commented 6 years ago

@superpuffin we'll keep both of those updated for any changes this library receives.

That said, I think we're unlikely to put much more work into this library. In the general case, we're shifting our efforts to focus on CircuitPython-compatible libraries, and so probably deprecating this in favor of Adafruit_CircuitPython_DHT.

TheCedarPrince commented 6 years ago

Good to know - the CircuitFruit API looks dead simple and well-documented. Would it be wise to start migrating projects utilizing DHT11 and DHT22 sensors to that platform @brennen ?

ladyada commented 6 years ago

the DHT sensor is particularly weird, so we're not sure if/when it'll get ported to raspi circuitpython (altho it should be coming up 'soon')

that said the I2C sensors and SPI devices should all work now, for stuff like BME280 and other I2C device - please try those, we'll be migrating to only supporting circuitpython so we dont double the work :)

https://learn.adafruit.com/circuitpython-on-raspberrypi-linux