mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
* 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
639 B
639 B
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/
:
{
"display_name": "Codon",
"argv": [
"/path/to/codon",
"jupyter",
"{connection_file}"
],
"language": "python"
}
Plugins can also optionally be specified, as in:
{
"display_name": "Codon",
"argv": [
"/path/to/codon",
"jupyter",
"-plugin", "/path/to/plugin",
"{connection_file}"
],
"language": "python"
}