Alternatives to Jupyter

Having tried Jupyter, I was disappointed. It takes too many resources, even for a few simple things, and requires a browser which is extra resources (and probably less efficient than a native binary application). At some point, not having done much in one session, I saw RAM usage quickly rise high for no apparantly good reason. I like their idea, their overall goal, but I abhor their implementation of it. Not just the heavy resource use is a problem, but also that it doesn’t seem to be made with power users in mind. There may be plugins addressing this power user thing (somewhat), but that would still leave the other problems.

I like to use a simple terminal and sometimes a text editor, but I also like the advantages of some sort of IDE (that displays current variables in use e.g., and that especially integrates a fast terminal, a file viewer, etc.), and I like the idea of Jupyter (saving notebook files, reusing them, etc.).

So, if you consider my needs (light on resources, fast, easy setup preferrably offline, preferrably a native application, Jupyter-like, reasonably simple or to-the-point, suitable for power users, with a Vim style of control, and I don’t need pretty non-terminal-like printing for checking a table, etc.), are there good alternatives to Jupyter?

I looked around and so far found these (which require more investigation):

  • Zeppelin;
  • Beaker;
  • nteract;

Do you know any others and what can you tell me in the context of this thread?

Do they properly support Julia, without fiddling around?

Do you have experience with any of them? What was it like?

Since you are mentioning both Jupyter and an IDE in your post it’s not completely clear to me what kind of tool you are looking for. As you might know, Jupyter is a tool to work with interactive computational notebooks, which is great for exploratory/interactive analysis and presentation of results, but it is not supposed (to the best of my knowledge) to act as an IDE.

Could you clarify whether you are looking for a different interactive computational notebook tool or are you looking for a Julia IDE like environment?

EDIT:
From reading your post again I think you are looking for a notebook like replacement for Jupyter.
I don’t have any feedback on the tools you mentioned, but one tool you can try which is definitely suitable for power users is using Emacs org-mode + emacs-jupyter. As the name suggests this still relies on a Jupyter server but allows you to interact with it via a different frontend (Emacs) so you don’t need the browser.

I set it up and used it a bit and it works very nicely, but at the moment I am still using Jupyter lab for my interactive analysis needs and emacs for developing more serious code. Probably by force of habit.

1 Like

It is not clear what you want from this. For what it’s worth I have found jupyterlab very responsive, despite being on a browser.

If you want something so simple, it’s not clear why Sublime Text 3 with a terminal would be so unpleasant. If you are looking for a notebook, trye qtconsole, which is a QT-based notebook.

1 Like

Has anybody made a package that loads a Jupyter notebook with a Blink.jl desktop electron window? If I could launch Jupyter from the REPL with Blink.jl, then I might actually use Jupyter.

1 Like

I don’t know about Blink.jl, but this nteract tool OP mentioned seems to be a desktop app interface to Jupyter notebooks as far as I understand, if that is what you are after.

Yes, a Jupyter-like replacement is what I meant, when I used many words earlier, though with those things to be considered which I mentioned (good fast terminal integration, quick list of variables in use, light on resources, etc.).

@pdeffebach, I never said it wasn’t responsive :wink: It was taking too many resources (for my taste) and even suddenly spiked greatly in RAM use for no apparant reason. Obviously, the simplicity of a terminal and text editor lacks the notebook-like functionality (which you could know from my post).

I will investigate qtnote. Thanks for the suggestion. Maybe it’s for me.

@orialb, yes, you’ve reread correctly. Thanks for the suggestion. I tend to avoid Emacs, but I might have a look at it.

I add, I noticed others speak of Jupyter as though it’s an IDE.

JupyterLab really is an IDE. There is a text editor, etc and both terminal and console modes on top of the notebook interface. Jupyter refers to a range of options.

Maybe I should’ve made my first post shorter and clearer. And you seem correct about Jupyter being a range of options. That was poor word choice on my part.

Maybe it can be called an IDE, of course it depends on what you mean by an IDE :slight_smile: . I just meant that I don’t think it is the ideal tool to develop packages or navigate large code bases, and I don’t think it is meant to be such a tool (but I might be wrong). For example I don’t think Jupyter lab has a capability for searching all files of a project or jumping to a function definition in a different file (I might be wrong here as well, maybe there are some extensions for it).

If the reason you tend to avoid Emacs is because you like the modal editing style of vim (I saw you mentioned it in the requirements in the original post), note that you can have vim bindings and modal editing in Emacs as well.
Have a look at Doom or Spacemacs. Those are both popular Emacs “distributions” (they are basically just config files for Emacs), whose goal is to provide smoother out of the box experience and make it easy to install packages. Both of them have vim like bindings by default.
Doom is even defined as “An Emacs configuration for the stubborn martian vimmer”

Have you checked out this option: Use LanguageServer.jl on vim 8.1 with vim-lsp plugin? I don’t have any experience I just remembered that something for Vim exists.

Thanks, @orialb, for the interesting links.

Thanks, @Tero_Frondelius. I will check that out.