Fatal error: itoa.h: No such file or directory

Unable to build WioLTE example code of gnss.

#include "gnss.h"


GNSS gnss = GNSS();

void setup() {
  gnss.Power_On();
  while(false == gnss.Check_If_Power_On()){
    SerialUSB.println("Waitting for module to alvie...");
    delay(1000);
  } 
  SerialUSB.println("\n\rPower On!");

  if(!(gnss.open_GNSS())){
    SerialUSB.println("\n\rGNSS init failed!");
    return;
  }

  SerialUSB.println("Open GNSS OK.");
  delay(2000);
}

void loop() {
  if(gnss.getCoordinate()){
    SerialUSB.println();
    SerialUSB.print("GNSS: \r\n");

    // Output double type
    SerialUSB.print("Data type in double: ");
    SerialUSB.print(gnss.longitude, 6);
    SerialUSB.print(",");
    SerialUSB.println(gnss.latitude, 6);
    
    // Output char* type
    SerialUSB.print("Data type in string: ");
    SerialUSB.print(gnss.str_longitude);
    SerialUSB.print(",");
    SerialUSB.println(gnss.str_latitude);
  } else{
    SerialUSB.print("...");
  }
}

Errors:

 fatal error: itoa.h: No such file or directory
 #include "itoa.h"
          ^~~~~~~~
compilation terminated.
exit status 1
Error compiling for board DOIT ESP32 DEVKIT V1.

Tips to fix-

Search for the error code to find specific instructions.
Update the software.
Update the drivers.
Uninstall any recently installed programs.
Restore Windows to an earlier state.
Disable unnecessary background programs.
Delete temporary files.
Free up space on the hard drive.

Regards,
Rachel Gomez

You can check this video for the ‘No such file or directory’ error: 2 Easy fixes to Arduino error: “.h: No such file or directory" - YouTube