Metadata-Version: 2.1
Name: ikernel-remote
Version: 1.0.0
Summary: Running IPython kernels remotely and through batch queues
Home-page: https://github.com/macdems/ikernel_remote
Author-email: Tom Daff <tdd20@cam.ac.uk>, Maciej Dems <maciej.dems@p.lodz.pl>
License: BSD
Project-URL: Homepage, https://github.com/macdems/ikernel_remote
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: IPython
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.4
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

IKernel Remote
--------------

All your Jupyter kernels, on all your machines, in one place.
This is a fork of abandonned package ``remote_ikernel`` by Tom Daff <tdd20@cam.ac.uk>.

Launch Jupyter kernels on remote systems and through batch queues so that
they can be used within a local Jupyter noteboook.

.. image :: https://github.com/macdems/ikernel_remote/raw/main/doc/kernels.png

Jupyter compatible Kernels start through interactive jobs in batch queue
systems (SGE, SLURM, PBS...) or through SSH connections. Once the kernel is
started, SSH tunnels are created for the communication ports are so the
notebook can talk to the kernel as if it was local.

Commands for managing the kernels are included. It is also possible to use
``ikr`` script to manage kernels from different virtual environments or
different python implementations.

Install with ``pip install ikernel_remote``. Requires ``notebook`` (as part
of Jupyter), version 4.0 or greater and ``pexpect``. Passwordless ``ssh``
to the all the remote machines is also required (e.g. nodes on a cluster).

.. note::

   When running kernels on remote machines, the notebooks themselves will
   be saved onto the local filesystem, but the kernel will only have access
   to filesystem of the remote machine running the kernel. If you need shared
   directories, set up ``sshfs`` between your machines.

.. note::

   Version 0.3 and later of this package depend on the split Jupyter and
   IPython versions when installing with pip. If you are upgrading
   from an older version of IPython, Jupyter will probably migrate your
   existing kernels (to ``~/.local/share/jupyter/kernels/``), but not
   profiles. If you need to stick with IPython 3 series, use an older
   version of ``ikernel_remote`` or install without using pip/setuptools.


.. code:: shell

   # Install the module ('python setup.py install' also works)

   pip install ikernel_remote

.. code:: shell

   # Set up the kernels you'd like to use

   ikr

.. code:: shell

   # Add a new kernel running through GrideEngine

   ikr --add \
      --kernel_cmd="ipython kernel -f {connection_file}" \
      --name="Python 2.7" --cpus=2 --pe=smp --interface=sge

.. code:: shell

   # Add an SSH connection to a remote machine running IJulia

   ikr --add \
      --kernel_cmd="/home/me/julia-79599ada44/bin/julia -i -F /home/me/.julia/v0.3/IJulia/src/kernel.jl {connection_file}" \
      --name="IJulia 0.3.8" --interface=ssh \
      --host=me@remote.machine --workdir='/home/me/Workdir' --language=julia

.. code:: shell

   # Set up kernels for your local virtual environments that can be run
   # from a single notebook server.

   ikr --add \
      --kernel_cmd="/home/me/Virtualenvs/dev/bin/ipython kernel -f {connection_file}" \
      --name="Python 2 (venv:dev)" --interface=local

.. code:: shell

   # Connect to a SLURM cluster through a gateway machine (to get into a
   # local network) and cluster frontend machine (where the sqsub runs from).

   ikr --add \
      --kernel_cmd="ipython kernel -f {connection_file}" \
      --name="Python 2.7" --cpus=4 --interface=slurm \
      --tunnel-hosts gateway.machine cluster.frontend


The kernel spec files will be installed so that the new kernel appears in
the drop-down list in the notebook. ``ikernel_remote manage`` also has options
to show and delete existing kernels.

.. warning::
   ``IJulia`` kernels don't seem to close properly, so you may have julia
   processes lingering on your systems. To work around this edit the file
   ``~/.julia/v0.3/IJulia/src/handlers.jl`` so that ``shutdown_request``
   calls ``run(`kill $(getpid())`)`` instaed of ``exit()``.


Changes for v0.6
================

  * Renamed to ``ikernel_remote``.
  * Changed kernel name base to ``kernel-remote``.

Changes for v0.5
================

  * Options ``--mem`` and ``--time`` to specify required resources for batch jobs.
  * Bugfixes.

Changes for v0.4
================

  * Option ``--tunnel-hosts``. When given, the software will try to create
    an ssh tunnel through all the hosts before starting the final connection.
    Allows using batch queues on remote systems.
  * Preliminary support for dealing with passwords. If a program is defined
    in the environment variable ``SSH_ASKPASS`` it will be used
    to ask the user for a password.

Changes for v0.3
================

  * Updated pip requirements to pull in the `notebook` package. Use an earlier
    version if you need to use IPython 3.
  * Remote process is polled for output which will show up when ``--verbose``
    if used as a kernel option.

Changes for v0.2
================

  * Version 0.2.11 is the last version to support IPython notebook version 3.
    `pip` requirements enforce versions less than 4. Use a more recent version
    to ensure compatibility with the Jupyter split.
  * Support for PBS/Torque through ``qsub -I``.
  * Tunnels are kept alive better, if something is not responding try waiting
    20 seconds to see if a tunnel had dies. (Tunnels no longer depend on pyzmq,
    instead they are launched through pexpect and monitored until they die.)
  * ``--remote-launch-args`` can be used to set ``qlogin`` parameters or similar.
  * ``--remote-precmd`` allows execution of an extra command on the remote host
    before launching a kernel.
  * Better compatibility with Python 3.
  * Kernel output on terminals with ``--verbose`` option for debugging.
  * Connect to a host with ssh, slurm, or local kernels.
  * Changed prefix to ``rik_``.
  * kernel_cmd now requires the ``{connection_file}`` argument.
  * ``ikernel_remote manage --show`` command to show existing kernels.
  * Specify the working directory on the remote machine with ``--workdir``.
  * ``kernel-uuid.json`` is copied to the working director for systems where
    there is no access to the frontend filesystem.
  * Added compatibility layer to get rid of Jupyter warnings.


