Changes between Version 30 and Version 31 of Jupyter


Ignore:
Timestamp:
05/21/18 15:09:41 (6 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Jupyter

    v30 v31  
    1515* **Big data integration** \\ Leverage big data tools, such as Apache Spark, from Python, R and Scala. Explore that same data with pandas, scikit-learn, ggplot2, !TensorFlow.
    1616
    17 * **Language of choice** \\ The Notebook has support for over 40 programming languages, including Python, Julia, R and Bash.
     17* **Language of choice** \\ The Notebook has support for over 40 programming languages, including Python, C++ Julia, R and Bash.
    1818
    1919==== !JupyterLab
     
    7272----
    7373
    74 === How to use your own special software through in a Jupyter-Kernel
    75 In general the Jupyter Kernel live in the system environment, which is loaded for Jupyter itself.
    76 This might not suite your needs and you want to switch to a different software stage or want to load additional software modules. In that case you need to set up your own specialized Jupyter kernel. This can be done in a few steps:
     74=== Jupyter Kernel - The Computational Engine
     75A Jupyter kernel is a “computational engine” that executes the code contained in a Jupyter Notebook document.\\
     76Various kernel have been provided by different groups.\\
     77Here is a list of available kernels: https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
     78
     79In general the Jupyter Kernel live in the system environment, which is loaded for Jupyter itself.\\
     80On JURECA currently the following kernel are installed:
     81* Python
     82* C++ (14,17,1z)
     83* Julia
     84* Bash
     85but you can create your own specialized Jupyter kernel if you like (and need).
     86
     87==== Create your own specialized Jupyter-Kernel
     88The installed kernels might not suite your needs and you want to switch to a different software stage or want to load additional software modules. In that case you need to set up your own specialized Jupyter kernel. This can be done in a few steps:
     89
     90
    7791
    7892----