How to install unavailable Bibliometric related packages (bibliometrix & biblioshiny) in Rstudio ver 3.6.1?

Error Information:

Warning in install.packages :
package ‘bibliometric’ is not available (for R version 3.6.1)
Warning in install.packages :
package ‘biblioshiny’ is not available (for R version 3.6.1)

Description of issue -

Steps taken so far -

System Information:

  • RStudio Edition: (Desktop or Server)
  • RStudio Version:
  • OS Version:
  • R Version:

Also:

  • RStudio diagnostics report:
  • Your sessionInfo():
  • RStudio crash report:
  • RStudio application log files:

From Troubleshooting Guide: Using RStudio

You just have a typo, the package is called bibliometrix not bibliometric and biblioshiny is not a package it's a shiny app distributed along with the package.

install.packages("bibliometrix", dependencies=TRUE) 

Thank you very much Mr andresrcs for the info I have installed install.packages("bibliometrix", dependencies = T). However, I got this update in Console after installation:

package ‘farver’ successfully unpacked and MD5 sums checked
Error in install.packages : ERROR: failed to lock directory ‘C:\Users\LEN0V0\Documents\R\win-library\3.6’ for modifying
Try removing ‘C:\Users\LEN0V0\Documents\R\win-library\3.6/00LOCK’

#Load bibliometrix
library('bibliometrix')
Error in library("bibliometrix") :
there is no package called ‘bibliometrix’

Just follow the instructions from the error message.

And try to install again

Again, thank you very much Mr andresrcs and really appreciate it. I have successfully installed the package after removed the file.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.