-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to call a remote julia REPL via TRAMP? #61
Comments
|
@aramirezreyes I tried this and it doesn't work. However, looking at something like tramp-termp.el,, I get the sense that it might not be that hard to implement. I might want this feature someday so I might take a stab at it if no one else does. |
I'd love to see this. Motivated by your tramp-term comment, I've experimented with the following: (make-term "test" "ssh" nil "user@host" "julia") which brings up a responsive julia process but there are issues:
|
Sorry I somehow missed this issue. I will look into it, it should be possible via |
The solution, thanks to tkluck on another thread I posted about fixing the issue for ssh, is to use the "-t" option. This works well:
I'm going to wrap that in some simple clothes use it for now. |
Running in a docker container with:
|
I find that specifying an executable as ssh -t host /path/to/julia works fine. I am leaving this issue open so that I don't forget adding it to the README. |
I think I am misunderstanding the last comment. Assume valid user
now I open a julia file, select remote via
And the
Just pasting the ssh command in a terminal works. Any ideas what I am doing wrong? |
I hacked something together that works for me at least. Maybe it is helpful to others:
|
It would be nice to document this workflow on the README, @tpapp. Perhaps it would also be possible to let users start an ansi-term or a vterm, ssh to a remote machine, start julia (all manually), and then turn this into a julia-repl? |
PRs to the docs (README) are welcome. |
I have not been able to get this working smoothly, but if anyone can lend me a hand, I am happy to summarize everything as a PR for the README. |
A quick workaround for the vterm backend: A better solution would be to extend the (One would also have to strip the paths from the |
Hi!
I'm not sure if this is supported but I think it is not.
I would like to have the option to call a remote julia via TRAMP (or not), something like:
Is this possible? Super hard to implement?
The text was updated successfully, but these errors were encountered: