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
thread 'main' panicked at /home/jmcphers/git/ark/crates/harp/src/command.rs:33:42:
called `Result::unwrap()` on an `Err` value: NotPresent
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Some debugging suggests the problem is that this command requires R_HOME to be set. So you can do this:
export R_HOME=$(R RHOME)
After this you can install, but you get a spurious error about needing a connection file.
./ark --install
Successfully installed Ark Jupyter kernelspec.
Kernel: /home/jmcphers/.local/share/jupyter/kernels/ark/kernel.json
Error: A connection file must be specified. Use the `--connection_file` argument.
It's probably fine to require R_HOME to be set so that Ark is registered against the right version of R, but we should check and see if it's set and show something friendly if it isn't.
The text was updated successfully, but these errors were encountered:
To repro, just run
ark --install
. This appears:Some debugging suggests the problem is that this command requires
R_HOME
to be set. So you can do this:After this you can install, but you get a spurious error about needing a connection file.
It's probably fine to require R_HOME to be set so that Ark is registered against the right version of R, but we should check and see if it's set and show something friendly if it isn't.
The text was updated successfully, but these errors were encountered: