R 包不会安装在 Jupyter Notebook 中,但会安装在 RStudio 和 R 应用程序中

R Package Doesn't Install in Jupyter Notebook, But Installs in RStudio and R app

我正在尝试在 Jupyter Notebook 中使用以下代码安装 PerformanceAnalytics 包,我已经使用它成功安装了许多包,例如 ggplot2,代码如下:

install.packages("PerformanceAnalytics", repos='http://cran.r-project.org')

但我读到了许多其他问题,添加 dependencies=TRUE 可以解决问题。不幸的是,它没有。我不断收到以下错误消息。

install.packages("PerformanceAnalytics", repos='http://cran.r-project.org', 
dependencies=TRUE)

Warning message in install.packages("PerformanceAnalytics", repos = 
"http://cran.r-project.org"): “installation of package ‘PerformanceAnalytics’ 
had non-zero exit status”Updating HTML index of packages in '.Library'
Making 'packages.html' ... done

该软件包在 R 应用程序和 RStudio 中安装没有问题。 Jupyter 需要这个特定的包,我缺少什么吗?我使用的是 macOS 10.12.5。以下是我 运行 sessionInfo().

时的信息
R version 3.3.2 (2016-10-31)
Platform: x86_64-apple-darwin11.4.2 (64-bit)
Running under: macOS Sierra 10.12.5

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] R6_2.2.0        magrittr_1.5    IRdisplay_0.4.4 pbdZMQ_0.2-4   
 [5] tools_3.3.2     crayon_1.3.2    uuid_0.1-2      stringi_1.1.2  
 [9] IRkernel_0.7.1  jsonlite_1.1    stringr_1.1.0   digest_0.6.10  
[13] repr_0.10       evaluate_0.10  

中问题的解决方案也解决了我的问题。我使用的是 Anaconda 的 R 版本。我卸载了 Anaconda,而是手动安装了 Jupyter Notebook 和 IRkernal,这解决了我的问题。有关完整详细信息,请参阅上面 link 的答案。