-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux Jupyter Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to Jupyter on Linux, covering Arch Linux, CachyOS, and other distributions including installation, notebooks, and data science setup.
Arch/CachyOS:
# Install Jupyter
pip install jupyter
# Or system package
sudo pacman -S jupyter-notebookDebian/Ubuntu:
sudo apt install jupyter-notebookFedora:
sudo dnf install python3-jupyterStart Jupyter:
# Launch Jupyter Notebook
jupyter notebook
# Or JupyterLab
jupyter labNew notebook:
- Jupyter opens in browser
- New → Python 3
- Start coding
Cell types:
- Code: Execute code
- Markdown: Documentation
- Raw: Raw text
Install:
# Install JupyterLab
pip install jupyterlab
# Launch
jupyter labFeatures:
- File browser: Navigate files
- Terminal: Integrated terminal
- Extensions: Add functionality
Python kernel:
# Already included with Jupyter
# Python kernel is defaultAdditional kernels:
# R kernel
pip install rpy2
# Julia kernel
pip install IJuliaCheck installation:
# Check Jupyter
jupyter --version
# Reinstall if needed
pip install --upgrade jupyterManual access:
# Get URL from terminal
# Copy URL to browser
# Usually: http://localhost:8888This guide covered Jupyter installation, notebooks, and JupyterLab for Arch Linux, CachyOS, and other distributions.
- Python Guide - Python setup
- Scientific Computing - Scientific tools
- Jupyter: https://jupyter.org/
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.