forked from jupyter/jupyter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtry.html
129 lines (114 loc) · 4.95 KB
/
try.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
layout: default
title: Try Jupyter
tagline: Use our tools without installing anything
permalink: /try
intro: |
Project Jupyter builds tools, standards, and services for many different use cases. This page
has links to interactive demos that allow you to try some our tools for free online, thanks to
<a href="https://mybinder.org">mybinder.org</a>, a free public service provided by the Jupyter community.
applications_copy: |
The Jupyter team builds several end-user applications that facilitate interactive computing workflows.
Click the boxes below to learn how they work and to learn more.
If you like one, you can find <a href="/install">installation instructions here</a>.
<br><br>
⚠️<strong>Experimental</strong>⚠️ several of the environments below use the
<a href="https://jupyterlite.readthedocs.io/en/latest/">JupyterLite project</a> to provide a self-contained
Jupyter environment that runs in your browser. This is experimental technology and
may have some bugs, so please be patient and report any unexpected behavior in
<a href="https://github.com/jupyterlite/jupyterlite/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc">the JupyterLite repository</a>.
kernels_copy: |
Jupyter kernels allow you to use Jupyter interfaces and tools with <b>any programming language</b>.
Below are interactive demos for a few languages to help demonstrate. You can also find
<a href="https://github.com/jupyter/jupyter/wiki/Jupyter-kernels">a community-curated list of Jupyter kernels here</a>.
application_boxes:
- title: JupyterLab
description: The latest web-based interactive development environment
src: try/jupyter.png
alt: Jupyter logo - Launch JupyterLab demo Binder
url: https://jupyter.org/try-jupyter/lab?path=notebooks%2FIntro.ipynb
- title: Jupyter Notebook
description: The original web application for creating and sharing computational documents
src: try/python.svg
alt: Python logo - Launch Jupyter Notebook demo Binder
url: https://jupyter.org/try-jupyter/retro/notebooks/?path=notebooks/Intro.ipynb
- title: Voilà
description: Share insights by converting notebooks into interactive dashboards
src: try/voila.svg
alt: Voilà logo - Launch Violà demo Binder
url: https://mybinder.org/v2/gh/voila-dashboards/voila/stable?urlpath=voila%2Ftree%2Fnotebooks
kernel_boxes:
- title: C++
description: How to use Jupyter with C++
src: try/Cpp.svg
alt: C++ logo - Launch C++ demo Binder
url: https://mybinder.org/v2/gh/jupyter-xeus/xeus-cling/stable?filepath=notebooks/xcpp.ipynb
- title: Julia
description: How to use Jupyter with Julia
src: try/julia.svg
alt: Julia logo - Launch Julia demo Binder
url: https://mybinder.org/v2/gh/binder-examples/demo-julia/HEAD?filepath=demo.ipynb
- title: GNU Octave
description: How to use Jupyter with GNU Octave
src: try/GNUOctave.png
alt: GNU Octave logo - Launch GNU Octave demo Binder
url: https://mybinder.org/v2/gh/jupyter-xeus/xeus-octave/stable?urlpath=/lab/tree/notebooks/xeus-octave.ipynb
- title: R
description: How to use Jupyter with R
src: try/R.svg
alt: R logo - Launch R demo Binder
url: https://mybinder.org/v2/gh/binder-examples/r/HEAD?filepath=index.ipynb
- title: Ruby
description: How to use Jupyter with Ruby
src: try/ruby.png
alt: Ruby logo - Launch Ruby demo Binder
url: https://mybinder.org/v2/gh/RubyData/binder/HEAD?filepath=ruby-data.ipynb
- title: Scheme
description: How to use Jupyter with Calysto Scheme
src: try/Scheme.png
alt: Scheme logo - Launch Scheme demo Binder
url: https://mybinder.org/v2/gh/Calysto/calysto_scheme/HEAD?filepath=notebooks/Reference%20Guide%20for%20Calysto%20Scheme.ipynb
---
{% include page-header.html
title=page.title
tagline=page.tagline
%}
<article>
<div class="section-white top-section-border container">
<div class="content content--copy">
<p>{{ page.intro }}</p>
</div>
<!-- Applications section -->
<div class="content content--copy">
<h2>Applications</h2>
<p>{{ page.applications_copy }}</p>
</div>
<div class="content content--wide boxlist">
{%- for obj in page.application_boxes -%}
{% include box.html
url=obj.url
title=obj.title
src=obj.src
alt=obj.alt
description=obj.description
%}
{%- endfor -%}
</div>
<!-- Kernels section -->
<div class="content content--copy">
<h2>Kernels</h2>
<p>{{ page.kernels_copy }}</p>
</div>
<div class="content content--wide boxlist">
{%- for obj in page.kernel_boxes -%}
{% include box.html
url=obj.url
title=obj.title
src=obj.src
alt=obj.alt
description=obj.description
%}
{%- endfor -%}
</div>
</div>
</article>