trouble with plm packages

Hi, I'm trying to use the plm() function and I've done the following steps:
install.packages("plm")
library(plm)

However, the following error message is presented:

Error: package or namespace load failed for ‘plm’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
 there is no package called ‘rbibutils’

What should I do to solve this?
Thank you in advance

Hi @viviandjaja , try to install rbibutils. Maybe somes dependence of this packages you need.

install.packages('rbibutils') 
library(rbibutils)
library(plm)

Thank you for the help!