snippetbashTip
jupytext — Convert Jupyter notebooks to plain text documents, and back again. More information: <https://jupyte
Viewed 0 times
plaincommandtextconvertjupytextclijupyternotebooks
Problem
How to use the
jupytext command: Convert Jupyter notebooks to plain text documents, and back again. More information: <https://jupytext.readthedocs.io/en/latest/using-cli.html>.Solution
jupytext — Convert Jupyter notebooks to plain text documents, and back again. More information: <https://jupytext.readthedocs.io/en/latest/using-cli.html>.Turn a notebook into a paired
.ipynb/.py notebook:jupytext --set-formats ipynb,py {{path/to/notebook}}.ipynbConvert a notebook to a
.py file:jupytext --to py {{path/to/notebook}}.ipynbConvert a
.py file to a notebook with no outputs:jupytext --to notebook {{path/to/notebook}}.pyConvert a
.md file to a notebook and run it:jupytext --to notebook --execute {{path/to/notebook}}.mdUpdate the input cells in a notebook and preserve outputs and metadata:
jupytext --update --to notebook {{path/to/notebook}}.pyUpdate all paired representations of a notebook:
jupytext {{[-s|--sync]}} {{path/to/notebook}}.ipynbCode Snippets
Turn a notebook into a paired `.ipynb`/`.py` notebook
jupytext --set-formats ipynb,py {{path/to/notebook}}.ipynbConvert a notebook to a `.py` file
jupytext --to py {{path/to/notebook}}.ipynbConvert a `.py` file to a notebook with no outputs
jupytext --to notebook {{path/to/notebook}}.pyConvert a `.md` file to a notebook and run it
jupytext --to notebook --execute {{path/to/notebook}}.mdUpdate the input cells in a notebook and preserve outputs and metadata
jupytext --update --to notebook {{path/to/notebook}}.pyContext
tldr-pages: common/jupytext
Revisions (0)
No revisions yet.