Rstudio server installation el capitan

百般思念 提交于 2019-12-06 05:45:42

With El Capitan, OS X has moved the system OpenSSL headers out of the way and so they are no longer automatically discovered by RStudio.

This is currently worked around by looking for OpenSSL here: https://github.com/rstudio/rstudio/blob/cc562d2c0c4ceac1cf3131e27097d1d1249ba889/src/cpp/core/CMakeLists.txt#L190-L205

To take advantage of this, you'll need to install OpenSSL yourself to /usr/local/opt/openssl; if you're using Homebrew then a simple

brew install openssl

will do this automatically for you. (You may need to run cmake again, after making this change, to ensure all the compilation configuration is updated.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!