Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package Loading Problems

Tags:

package

r

I have problems of loading this package called equatiomatic

I have successfully installed, but when I library it using library(equatiomatic),the following error message appears.

Error: package or namespace load failed for ‘equatiomatic’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): namespace ‘htmltools’ 0.5.1.1 is already loaded, but >= 0.5.2 is required

Can any one tell me how to fix it?

like image 417
Alex Avatar asked Sep 13 '26 05:09

Alex


1 Answers

One solution is to update htmltools then load equatiomatic, e.g.

# restart or start a new session to 'unload' all libraries

# install htmltools
install.packages("htmltools")

# load equatiomatic
library(equatiomatic)
like image 136
jared_mamrot Avatar answered Sep 15 '26 18:09

jared_mamrot



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!