Help! HX711.h Error!

I'm trying to do a weight scale with my Arduino. I'm using this code

// Hx711.DOUT - pin #A2
// Hx711.SCK - pin #A3

#include <Hx711.h>
Hx711 scale(A2, A3);

void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.print(scale.getGram(), 1);
  Serial.println(" g");
  delay(200);
}

But it alwayas give me this error

Arduino: 1.6.10 Hourly Build 2016/05/18 07:34 (Windows 10), Board: "Arduino/Genuino Uno"

C:\Users\Juan Ruiz\Desktop\arduino-nightly\New folder (2)\sketch_jul16a\sketch_jul16a\sketch_jul16a.ino:10:19: fatal error: Hx711.h: No such file or directory

 #include <Hx711.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.

Thanks you guys for you help!

the library .h is not called Hx711.h

try with

 [color=green]#include <HX711.h>[/color]