Last active
March 10, 2025 20:31
-
-
Save filipeandre/ab7b13d795302129c1f8a177a5647090 to your computer and use it in GitHub Desktop.
Install Jupiter lab using PIPx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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