You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encounter an issue while installing an R package. I've install the histogram package like so R"install.library('histogram')" without an issue. However, when I do R"install.library('ftnonpar')" it gives me
To expand upon the above. The reason ftnonpar needed me to source the Conda environment and the histogram package did not is because ftnonpar has NeedsCompilation yes while histogram has NeedsCompilation no.
I encounter an issue while installing an R package. I've install the histogram package like so
R"install.library('histogram')"
without an issue. However, when I doR"install.library('ftnonpar')"
it gives meTo fix this I located my Conda
activate
script which is atThen I drop out of
julia
, runsource activate
, restartjulia
, and doand it installs and I can use it.
Anyway, maybe this can be useful to someone else.
The text was updated successfully, but these errors were encountered: