From 04bc5f6659e87abf3df5e67d475a6c5f38e44e41 Mon Sep 17 00:00:00 2001 From: Ben Date: Sun, 19 Mar 2017 16:01:49 -0400 Subject: [PATCH 1/2] Update installation; OpenSSL needs Root install It took me a few runs to figure out why dependancies were failing at least on OSX, following the instructions, It took a bunch of log checking to figure out that openssl was failing, but was not obvious, as it would error on a different package that was an intermediary. OpenSSL couldn't built without root because of the out-of-R tree it required. --- installation/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/installation/index.html b/installation/index.html index 761072f..bdd0197 100644 --- a/installation/index.html +++ b/installation/index.html @@ -21,8 +21,15 @@

1/2) Installing via supplied binary packages
(default on Windows + Mac OS X)

You can install all packages using the following lines in an R console:

+ The OpenSSL package needs to be built as root, the other packages can be installed as the user. + user$ sudo R +
> install.packages(c('openssl')
+		> quit()
+ --- + user$ R
install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'))
 devtools::install_github('IRkernel/IRkernel')
+> quit()
 # Don’t forget step 2/2!

To update the IRkernel package, which is not yet on CRAN, you have to rerun the devtools:: line. For the other packages, a simple update.packages() is sufficient.

From 4e739b9b1c1e064e072d445cdd0d0bfa377fd7d6 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 21 Mar 2017 12:16:32 -0400 Subject: [PATCH 2/2] Update SSL on OSX warning to an