Error message???

I can't even get past first base with this, what's this error and why?
I done everything right and included the sensor info into the library, but it's not happening when I verify it.

Arduino: 1.8.5 (Windows Store 1.8.10.0) (Windows 10), Board: "Arduino/Genuino Uno"[/i]

In file included from C:\Users\gary\Documents\Arduino\libraries\DHT-sensor-library-master\DHT_U.cpp:22:0:

C:\Users\gary\Documents\Arduino\libraries\DHT-sensor-library-master\DHT_U.h:25:29: fatal error: Adafruit_Sensor.h: No such file or directory

#include <Adafruit_Sensor.h>

^

compilation terminated.

exit status 1
Error compiling for board Arduino/Genuino Uno.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

fatal error: Adafruit_Sensor.h: No such file or directorySo, where did you put it?

I done everything right

The compiler doesn't agree with your opinion.

Adafruit_Sensor.h: No such file or directory

Looks like the library is not installed or is installed incorrectly

Thanks for looking at my error guys, I used the ADD .Zip Library, anyway I will have to look at it a little closer. So frustrating for a NOOby. Cheers...Gary

I used the ADD .Zip Library,

If you go into Sketch/Include Library can you see it ?

If not then it is not properly installed

Yes I can see it....

DHT sensor library

It strange how it does not work.

Thanks

Yes I can see it....

DHT sensor library

What about Adafruit_Sensor.h ?

Instead of putting the include <Adafruit_Sensor.h> put #include "DHT.h" or #include <DHT.h>
That should work fine

Of course, it would help if the OP had read this before posting a programming question and followed the advice contained in it