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`
> options(useHTTPS=FALSE) > source("http://bioconductor.org/biocLite.R") Warning: unable to access index for repository https://bioconductor.org/packages/3.3/bioc/src/contrib: cannot download all files 'biocLite.R' failed to install 'BiocInstaller', use 'install.packages("BiocInstaller", repos="https://bioconductor.org/packages/3.3/bioc")' or 'install.packages("BiocInstaller", repos="http://bioconductor.org/packages/3.3/bioc")' Warning message: package ‘BiocInstaller’ is not available (for R version 3.3.1)Does the suggestion to
options(useHTTPS=FALSE) install.packages("BiocInstaller", repos="http://bioconductor.org/packages/3.3/bioc")get BiocInstaller installed, and biocLite() install default packages?