This collection of notebooks is a resource for Python 3 learning and reference. Each notebook highlights things that Python can do simply and efficiently. If essence, the notebooks aim to demonstrate the principles of the Zen of Python.
- Python installed
- PIP installed
- Enter the project directory
- Set up and activate a Python virtual environment
python -m venv .venv
source .venv/bin/activate
- Install and run Jupyter Lab
pip install jupyterlab
jupyter lab