Closed mjsteinbaugh closed 1 year ago
See related fix in PyCharm: https://youtrack.jetbrains.com/issue/R-1271/R-console-not-working-in-macos-with-Pycharm-2020.3-and-above-including-latest-2021.1
And here's additional information on external software from the R admin guide: https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#External-software
Closing this issue in favor of proposed pull request
Hi @randy3k ,
I'm running into an R configuration issue with radian on macOS. I use a custom
ldpaths
file to utilize external libraries managed by koopa, which install into/opt/koopa
instead of/usr/local
. I noticed that radian currently only reads the Rldpaths
file on Linux, due tosys.platform.startswith("linux")
inapp.py
.See code here: https://github.com/randy3k/radian/blob/dde559fe820765436eada91a136292be91fb48c3/radian/app.py#L78
Can we modify this to also parse
ldpaths
on macOS and use eitherR_LD_LIBRARY_PATH
orDYLD_FALLBACK_LIBRARY_PATH
?Here's my current
ldpaths
file, for reference:See related issues and pulls:
Best, Mike