1
0
mirror of https://github.com/exaloop/codon.git synced 2025-06-03 15:03:52 +08:00
codon/docs/interop/jupyter.md
A. R. Shajii d5ce1f8ff9
Update docs (#28)
* Update docs

* Update docs

* Update docs

* GitBook: [#4] Add hint

* Update primer

* Re-organize docs

* Fix table

* Fix link

* GitBook: [#5] No subject

* GitBook: [#6] No subject

* Cleanup and doc fix

* Add IR docs

* Add ir docs

* Fix spelling error

* More IR docs

* Update README.md

* Update README.md

* Fix warning

* Update intro

* Update README.md

* Update docs

* Fix table

* Don't build docs

* Update docs

* Add Jupyter docs

* FIx snippet

* Update README.md

* Fix images

* Fix code block

* Update docs, update cmake

* Break up tutorial

* Update pipeline.svg

* Update docs for new version

* Add differences with Python docs
2022-07-26 16:08:42 -04:00

33 lines
639 B
Markdown

Codon ships with a kernel that can be used by Jupyter, invoked
with the `codon jupyter ...` subcommand.
To add the Codon kernel, add the following `kernel.json` file to
the directory `/path/to/jupyter/kernels/codon/`:
``` json
{
"display_name": "Codon",
"argv": [
"/path/to/codon",
"jupyter",
"{connection_file}"
],
"language": "python"
}
```
Plugins can also optionally be specified, as in:
``` json
{
"display_name": "Codon",
"argv": [
"/path/to/codon",
"jupyter",
"-plugin", "/path/to/plugin",
"{connection_file}"
],
"language": "python"
}
```