On Monday, 26 January 2015 08:26:24 UTC-5, Christian Groll wrote: > > I did set up Julia in a docker container. When I run it from the shell > everything works just fine. However, when I start the shell inside of > emacs, I can run the docker container and start Julia, but it somehow > messes with the output: >
This seems like a configuration problem, those garbage characters look like special shell escape codes. So try running julia with a command like TERM=dumb julia --color=no Maybe that will help. Also, you say that you run julia in a shell. There is an ESS interactive mode for julia (M-x julia), which allows you to start remote julia processes by specifying the julia starting directory as "/ssh:user@host:" (see ESS's manual; also, make sure it can find julia in path; see tramp-remote-path and tramp-own-remote-path). I think that's also worth trying.
