2018-11-28 22:09:43 -05:00
========================================================================
2020-02-01 10:59:39 -05:00
EIN -- Emacs IPython Notebook |build-status| |melpa-dev| |melpa-stable|
2018-11-28 22:09:43 -05:00
========================================================================
2019-03-29 12:11:12 -04:00
.. COMMENTARY (see Makefile)
2018-11-28 22:09:43 -05:00
.. |build-status|
2020-02-01 10:59:39 -05:00
image:: https://github.com/millejoh/emacs-ipython-notebook/workflows/CI/badge.svg
:target: https://github.com/millejoh/emacs-ipython-notebook/actions
2018-11-28 22:09:43 -05:00
:alt: Build Status
.. |melpa-dev|
image:: http://melpa.milkbox.net/packages/ein-badge.svg
:target: http://melpa.milkbox.net/#/ein
:alt: MELPA development version
.. |melpa-stable|
image:: http://melpa-stable.milkbox.net/packages/ein-badge.svg
:target: http://melpa-stable.milkbox.net/#/ein
:alt: MELPA stable version
.. _Jupyter: http://jupyter.org
2019-05-16 15:01:45 -04:00
.. _Babel: https://orgmode.org/worg/org-contrib/babel/intro.html
.. _Org: https://orgmode.org
.. _[tkf]: http://tkf.github.io
.. _[gregsexton]: https://github.com/gregsexton/ob-ipython
2018-11-28 22:09:43 -05:00
Install
=======
2020-02-01 10:59:39 -05:00
As described in `Getting started`_ , ensure melpa's whereabouts in `` init.el `` or `` .emacs `` ::
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
Then
::
M-x package-refresh-contents RET
M-x package-install RET ein RET
Alternatively, directly clone this repo and `` make install `` .
2018-11-28 22:09:43 -05:00
Usage
=====
2020-02-05 04:37:07 -05:00
Start EIN using **ONE** of the following:
2018-11-28 22:09:43 -05:00
2019-03-29 12:11:12 -04:00
- Open an `` .ipynb `` file normally in emacs and press `` C-c C-o `` , or,
- `` M-x ein:run `` launches a jupyter process from emacs, or,
- `` M-x ein:login `` to a running jupyter server
2018-11-28 22:09:43 -05:00
2019-03-29 12:11:12 -04:00
Use `` C-u M-x ein:login `` for services such as `` mybinder.org `` requiring cookie authentication.
2018-11-28 22:09:43 -05:00
2019-05-16 15:01:45 -04:00
Alternatively, ob-ein_.
2018-11-28 22:09:43 -05:00
.. _Cask: https://cask.readthedocs.io/en/latest/guide/installation.html
2020-02-01 10:59:39 -05:00
.. _Getting started: http://melpa.org/#/getting-started
2019-03-09 10:12:52 -05:00
2020-02-05 04:37:07 -05:00
FAQ
===
2019-03-09 10:12:52 -05:00
2020-02-05 04:37:07 -05:00
How do I...
-----------
2019-08-08 09:25:57 -04:00
2020-02-05 04:37:07 -05:00
... report a bug?
File an issue using `` M-x ein:dev-bug-report-template `` .
2019-03-16 13:18:12 -04:00
2020-02-09 17:36:27 -05:00
First try `` emacs -Q -f package-initialize --eval "(setq debug-on-error t)" `` and reproduce the bug. The `` -Q `` skips any user configuration that might interfere with EIN.
2019-03-09 10:12:52 -05:00
2020-02-05 04:37:07 -05:00
Note EIN is tested only for *released* GNU Emacs versions
.. CI VERSION (see Makefile)
and later. Pre-release versions are unlikely to work.
2019-03-09 10:12:52 -05:00
2020-02-05 04:37:07 -05:00
... display images inline?
We find inserting images into emacs disruptive, and so default to spawning an external viewer. To override this,
::
2018-11-28 22:09:43 -05:00
2020-02-05 04:37:07 -05:00
M-x customize-group RET ein
Ein:Output Area Inlined Images
... configure the external image viewer?
::
M-x customize-group RET mailcap
Mailcap User Mime Data
2019-03-09 10:12:52 -05:00
2020-02-19 09:52:10 -05:00
... get IDE-like behavior?
The official python module for EIN is elpy_, installed separately. Other `program modes`_ for non-python kernels may be installed with varying degrees of EIN compatibility.
2019-03-16 13:18:12 -04:00
.. _spacemacs layer: https://github.com/syl20bnr/spacemacs/tree/master/layers/%2Blang/ipython-notebook
2019-03-09 10:12:52 -05:00
.. _company-mode: https://github.com/company-mode/company-mode
.. _jupyterhub: https://github.com/jupyterhub/jupyterhub
2020-02-19 09:52:10 -05:00
.. _elpy: https://melpa.org/#/elpy
.. _program modes: https://www.gnu.org/software/emacs/manual/html_node/emacs/Program-Modes.html
2020-02-20 20:37:23 -05:00
.. _undo boundaries: https://www.gnu.org/software/emacs/manual/html_node/elisp/Undo.html
2019-05-16 15:01:45 -04:00
ob-ein
======
Configuration:
::
2018-11-28 22:09:43 -05:00
2019-05-16 15:01:45 -04:00
M-x customize-group RET org-babel
Org Babel Load Languages:
Insert (ein . t)
For example, '((emacs-lisp . t) (ein . t))
2019-03-09 10:12:52 -05:00
2019-05-16 15:01:45 -04:00
Snippet:
2019-03-09 10:12:52 -05:00
2019-05-16 15:01:45 -04:00
::
2019-03-09 10:12:52 -05:00
2019-05-16 15:01:45 -04:00
#BEGIN_SRC ein-python :session localhost :results raw drawer
import numpy, math, matplotlib.pyplot as plt
%matplotlib inline
x = numpy.linspace(0, 2*math.pi)
plt.plot(x, numpy.sin(x))
2019-03-09 10:12:52 -05:00
#+END_SRC
2018-11-28 22:09:43 -05:00
2019-05-16 15:01:45 -04:00
The `` :session `` is the notebook url, e.g., `` http://localhost:8888/my.ipynb `` , or simply `` localhost `` , in which case org evaluates anonymously. A port may also be specified, e.g., `` localhost:8889 `` .
*Language* can be `` ein-python `` , `` ein-r `` , or `` ein-julia `` . **The relevant** `jupyter kernel`_ **must be installed before use** . Additional languages can be configured via::
M-x customize-group RET ein
Ob Ein Languages
2019-03-09 13:45:10 -05:00
2019-03-29 12:11:12 -04:00
.. _polymode: https://github.com/polymode/polymode
.. _ob-ipython: https://github.com/gregsexton/ob-ipython
2019-03-09 10:12:52 -05:00
.. _scimax: https://github.com/jkitchin/scimax
2019-05-16 15:01:45 -04:00
.. _jupyter kernel: https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
2018-11-28 22:09:43 -05:00
2019-03-29 12:11:12 -04:00
Keymap (C-h m)
==============
2018-11-28 22:09:43 -05:00
::
.. KEYS NOTEBOOK (see Makefile)