JupyterLab
por ATH Infosystems
Version 4.5.1 + Free Support on Ubuntu 24.04
JupyterLab is an open-source, web-based interactive development environment (IDE) for data science, machine learning, and scientific computing. It provides a flexible workspace for writing code, running notebooks, exploring data, and developing applications.
Features of JupyterLab:
- Modern and flexible interface for working with notebooks, terminals, files, and text editors.
- Support for multiple programming languages via Jupyter kernels.
- Interactive visualizations and extensions for custom workflows.
- Runs in the browser and can be accessed remotely on servers or cloud environments.
To start JupyterLab:
$sudo su
$ cd /opt/jupyterlab
$source venv/bin/activate
$ jupyter lab
To run JupyterLab on server mode (remote access):
$ jupyter lab --allow-root --no-browser --ip=0.0.0.0 --port=8888 (token generated)
To enable JupyterLab as a systemd service:
$ sudo systemctl start jupyterlab
$ sudo systemctl enable jupyterlab
To access JupyterLab Web UI:
Visit the URL http://your-server-ip:8888/lab in your browser. (enter token generated in jupyter lab --allow-root --no-browser --ip=0.0.0.0 --port=8888)
To check JupyterLab version:
$ jupyter lab --version
Disclaimer: JupyterLab is provided "as is," without any warranty, express or implied. It is an open-source project maintained by the Jupyter community and is not affiliated with, endorsed by, or sponsored by any commercial entity. Contributors and maintainers of JupyterLab are not responsible for any issues, data loss, or damages resulting from its use. Users must follow applicable licenses, security practices, and organizational policies while deploying or accessing JupyterLab.