Difference between revisions of "Python"

From Alessandro's Wiki
Line 18: Line 18:
* activate
* activate
  source ~/new-env/bin/activate
  source ~/new-env/bin/activate
= JupyterHub ==
Use JupyterLab by Default
in /etc/jupyterhub/jupyterhub_config.py
c.Spawner.cmd=["jupyter-labhub"]

Revision as of 08:57, 15 February 2022


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"]