Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 877 Bytes

faqs.rst

File metadata and controls

37 lines (21 loc) · 877 Bytes

FAQs

Please visits the github issues with question tag for details FAQS.

Q

What platforms are supported

A

LSF, torque, SGE, ... more here.

Q

Am getting a error in devtools:::install_github("sahilseth/flowr")

error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
A

This is basically a issue with httr (link) Try this:

install.packages("RCurl")
devtools:::install_github("sahilseth/flowr")

If not then try this:
install.packages("httr");
library(httr);
set_config( config( ssl.verifypeer = 0L ) )
devtools:::install_github("sahilseth/flowr")