Skip to content

Instantly share code, notes, and snippets.

@filipeandre
Last active March 10, 2025 20:31
Show Gist options
  • Save filipeandre/ab7b13d795302129c1f8a177a5647090 to your computer and use it in GitHub Desktop.
Save filipeandre/ab7b13d795302129c1f8a177a5647090 to your computer and use it in GitHub Desktop.
Install Jupiter lab using PIPx
# install pipx
python -m pip install --user pipx
python -m pipx ensurepath
sudo pipx ensurepath --global
# install jupyterlab
pipx install jupyterlab --include-deps
pipx ensurepath
# add common dependencies
pipx inject jupyterlab pandas
pipx ensurepath
# start jupyterlab
jupyter lab
poetry run python -m ipykernel install --user --name $(basename $(poetry env info --path))
jupyter lab .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment