I'm trying to use `BioConductor` with my `R` installed through `conda`.
I get this error:
```
jespinozlt-osx:~ jespinoz$ which R /Users/jespinoz/anaconda/bin/R jespinozlt-osx:~ jespinoz$ R R version 3.3.1 (2016-06-21) -- "Bug in Your Hair" Copyright (C) 2016 The R Foundation for Statistical Computing Platform: x86_64-apple-darwin11.0.0 (64-bit) > source("https://bioconductor.org/biocLite.R") Error in file(filename, "r", encoding = encoding) : cannot open connection In addition: Warning message: In file(filename, "r", encoding = encoding) : URL 'https://bioconductor.org/biocLite.R': status was 'Peer certificate cannot be authenticated with given CA certificates'
```
I tried http and was getting the same problem :( when I get back to my computer I will try the curl method. Using R w/ conda is a little buggy.
Try also
options(useHTTPS=FALSE)
with the http:// url.I didn't get an error when I ran the `curl` line but I'm getting that my `R` version isn't compatible with `biocLite`
Does the suggestion to
get BiocInstaller installed, and biocLite() install default packages?