I have installed curl from this weblink. I have my system path also updated with curl install directory and I am able to curl from the command prompt. I have also installed RCurl. But, my RStudio throws this error:
Error in loadNamespace(name) : there is no package called ‘curl’
My code is as follows;
#install.packages("RCurl")
#install.packages("Biostrings")
#install.packages("rentrez")
library(Biostrings)
library(RCurl)
library(rentrez)
seq1 <- entrez_fetch(db = "sequences", rettype = 'fasta', id = "187830855") #human
I am using the latest R and RStudio on a Windows 8.1 machine.