LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

jupyterlab

launches JupyterLab, an interactive development environment

TLDR

Start JupyterLab server
$ jupyter lab
copy
Start on specific port
$ jupyter lab --port [8888]
copy
Start without opening browser
$ jupyter lab --no-browser
copy
Start in specific directory
$ jupyter lab --notebook-dir=[path]
copy
Start with specific IP binding
$ jupyter lab --ip=[0.0.0.0]
copy

SYNOPSIS

jupyter lab [options]

DESCRIPTION

jupyter lab launches JupyterLab, an interactive development environment for working with notebooks, code, and data. It provides a flexible interface for data science, scientific computing, and machine learning workflows with support for multiple programming languages.JupyterLab is the next-generation web-based interface for Project Jupyter, offering a tabbed workspace with file browser, terminals, text editors, and notebook support all in one environment.

PARAMETERS

--port number

Port to run server on. Default: 8888.
--no-browser
Don't open browser automatically.
--notebook-dir path
Directory to serve notebooks from.
--ip address
IP address to bind to. Default: localhost.
--allow-root
Allow running as root user.
--core-mode
Start in core mode with no extensions enabled.
--dev-mode
Start in development mode using local JavaScript packages.
--app-dir path
Start with a particular set of extensions.
--certfile path
SSL/TLS certificate file for HTTPS.
--help
Show abbreviated command-line options.
--help-all
Show all available options including detailed ones.

SEE ALSO

jupyter(1), python(1), pip(1)

Copied to clipboard
Kai