'Installing cookiejar library in Rstudio

I had been using the following method to import and use the cookiejar library in R studio for quite a while and it just stopped working as it used to.

More specifically I have a zipped file with the name "cookiejar_0.1.0.tar.gz" and I follow the next steps to import it in R.

install.packages("C:/Users/sample/sample/sample/sample/cookiejar_0.1.0.tar.gz",repos=NULL, type="source")
library(cookiejar)

And all of a sudden it gives me the following error which I was not able to find something significant on the web.

Error:

Error in library(cookiejar) : there is no package called 'cookiejar'
Calls: <Anonymous> ... withVisible -> eval_with_user_handlers -> eval -> eval -> library
Execution halted

Any suggestions would be greatly appreciated!

r


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source