Divvya
Divvya

Reputation: 1

Error on R studio startup

I get the following error message in the console when opening Rstudio :

Error installing package: Error: ERROR: no packages specified The filename, directory name, or volume label syntax is incorrect.

My R version is 3.1.1

Upvotes: 0

Views: 434

Answers (1)

Thomas
Thomas

Reputation: 44555

This is the error you get from calling install.packages with no package specified.

> install.packages()
Error in install.packages() : no packages were specified

You might want to check whether something like that is included in your Rprofile.site file.

Upvotes: 2

Related Questions