Jupyter Lab Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Internal=
=Internal=
* [[Jupyter Lab#Subjects|Jupyter Lab]]
* [[Jupyter Lab#Subjects|Jupyter Lab]]
=Overview=


=Installation=
=Installation=
{{External|https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html}}
<syntaxhighlight lang='bash'>
pip3 install jupyterlab
</syntaxhighlight>
<font color=darkkhaki>Might need the following, why is that?</font>
<syntaxhighlight lang='bash'>
jupyter lab build
</syntaxhighlight>
=Run=
<syntaxhighlight lang='bash'>
jupyter lab --notebook-dir=<directory-to-save-notebooks-into> --preferred-dir=<?>
</syntaxhighlight>
Example:
<syntaxhighlight lang='bash'>
jupyter lab --notebook-dir=/Users/ovidiu/jupyter
</syntaxhighlight>

Latest revision as of 22:28, 7 October 2023

Internal

Overview

Installation

https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html
pip3 install jupyterlab

Might need the following, why is that?

jupyter lab build

Run

jupyter lab --notebook-dir=<directory-to-save-notebooks-into> --preferred-dir=<?>

Example:

jupyter lab --notebook-dir=/Users/ovidiu/jupyter