cling/www/jupyter.html
2016-07-20 16:44:08 +02:00

80 lines
2.4 KiB
HTML

<html>
<head>
<title>Cling</title>
<link rel="import" href="import.html">
</head>
<body onload="selectMenu('jupyter')">
<iframe seamless src="header.html" class="header" id="iheader"></iframe>
<div id="breadcrumb"></div>
<div id="content">
<div class="sidebar">
<!-- insert your sidebar items here -->
<h3>Latest News</h3>
<h4>Cling goes public</h4>
<h5>July 25th, 2011</h5>
<p> Cling was officially announced to the Clang community <br /><a href="news/ClingAnnouncement.html">Read more</a></p>
<p></p>
<h4>New website launched</h4>
<h5>July 1st, 2011</h5>
<p> Welcome to the new website of the project. <br /><a href="news/NewWebsiteLaunched.html">Read more</a></p>
<h3>Useful Links</h3>
<ul>
<li><a href="www.cern.ch" target="_blank">CERN</a></li>
</ul>
</div>
<div id="main">
<!-- insert the page content here -->
<h3> Jupyter Kernel </h3>
<p>Cling is now integrated with the <a href = "http://jupyter.org/" target = "_blank"> Jupyter</a> technology through the Jupyter kernel. You can take advantage of creating a Jupyter notebook on top of runtime interpretation, you have runtime visualisation!
</p>
<img id = "jupyterscreenshot"
src="JupyterScreenshot.png" alt="Cling Jupyter Screenshot" style=""/>
<h3>Prerequisites</h3>
<ul>
<li>
ipykernel ≥ 4.0
</li>
</ul>
<h3>Install </h3>
To install the kernel with sources in src/tools/cling:
<pre><code>
export PATH=/path/to/cling/bin:$PATH
cd src/tools/cling/tools/Jupyter/kernel/
pip install -e .
# or: pip3 install -e .
# register the kernelspec:
jupyter-kernelspec install [--user] cling
# or: jupyter kernelspec install [--user] cling
</code></pre>
To run it:
<pre><code>
jupyter-notebook
# or: jupyter notebook
</code></pre>
</div>
</div>
<div id="footer">
<div id="copyright">
Copyright &copy; Cling Team
</div>
<div id="links">
<a href="http://root.cern.ch/" target="_blank">The ROOT Framework</a> |
<a href="http://llvm.org" target="_blank">LLVM</a> |
<a href="http://clang.llvm.org" target="_blank">Clang</a> |
<a href="http://www.html5webtemplates.co.uk" target="_blank">Web Design</a>
</div>
<div id="modified"><i>Page was modified on <b>$Date$</b> in $Rev$ by <b>$Author$</b></i></div>
</div>
</div>
</body>
</html>