No such filer Directory

Buenas, no he podido agregar ninguna librería de este código, que anteriormente funcionaba, pero formatié el pc y le instalé el UBUNTU 19.04 junto con windows 10,

#include "LiquidCrystal_I2C.h"

// Date and time functions using a DS1307 RTC connected via I2C and Wire lib
#include "RTClib.h"

LiquidCrystal_I2C lcd(0x27,16,2);  
RTC_DS1307 rtc;

char daysOfTheWeek[7][12] = {" dom", " lun", " mar", " mie", " jue", " vie", " sab"};

void setup () {
  lcd.init();
  lcd.backlight();
  lcd.clear();
  while (!Serial); // for Leonardo/Micro/Zero

  Serial.begin(9600);
  if (! rtc.begin()) {
    lcd.print("no te encuentro");
    while (1);
  }

  if (! rtc.isrunning()) {
    lcd.print("¡arreglame!");
    // following line sets the RTC to the date & time this sketch was compiled
    // rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
    // This line sets the RTC with an explicit date & time, for example to set
    // January 21, 2014 at 3am you would call:
    //rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));
    
//rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
  }
}



void loop() {
   // Obtener fecha actual y mostrar por Serial
   DateTime now = rtc.now();
 

    lcd.setCursor(0,0);
    lcd.print(now.year(), DEC);
    lcd.print('/');
    lcd.print(now.month(), DEC);
    lcd.print('/');
    lcd.print(now.day(), DEC);
    lcd.print(daysOfTheWeek[now.dayOfTheWeek()]);

    lcd.setCursor(0,1);
    lcd.print(now.hour(), DEC);
    lcd.print(" h");
    lcd.print(':'); 
    lcd.print(now.minute(), DEC);
    lcd.print(" min");
    lcd.print(':');
    lcd.print(now.second(), DEC);
    lcd.print(" s");

}

lo cual me sale el siguiente error, o sea, si, sé que es por la librería, he intentado hacer desde librarie manager y desde archivo ZIP, pero siempre me sale el mismo error al compilar, dice que el fichero se ha añadido pero no aparece en incluir librería.
el error es el el siguiente:

Arduino:1.8.12 (Linux), Tarjeta:"Arduino Uno"

sketch_apr11a:1:10: fatal error: LiquidCrystal_I2C.h: No such file or directory
#include "LiquidCrystal_I2C.h"
         ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
exit status 1
LiquidCrystal_I2C.h: No such file or directory

Este informe podría contener más información con
"Mostrar salida detallada durante la compilación"
opción habilitada en Archivo -> Preferencias.

Te está diciendo que la librería LiquidCrystal_I2C.h no esta presente.

Mi consejo es que vayas al Gestor de Librerías y busques LiquidCrystal_I2C y la instales.