Python

From Alessandro's Wiki
Revision as of 08:57, 15 February 2022 by Porcelinux (talk | contribs)


Pip

  • update Pip version using pip itself
pip install pip -U


Advanced

Virtual Environments

Package dependencies are sometimes incompatible to each other, so the solution is to create a isolated package tree shell to have a "clean" system for every package installation. In python it's the Virutal Environment

  • create:
python3 -m venv new-env
  • activate
source ~/new-env/bin/activate

JupyterHub =

Use JupyterLab by Default in /etc/jupyterhub/jupyterhub_config.py

c.Spawner.cmd=["jupyter-labhub"]