Created
December 9, 2019 10:30
-
-
Save JolleJolles/fda3bf41b39158820b6e060102f1e8d8 to your computer and use it in GitHub Desktop.
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
| # Create virtual environment | |
| mkvirtualenv -p python3 PROJECTNAME | |
| # From inside the environment install ipykernel | |
| pip install ipykernel | |
| # Install a new kernel | |
| ipython kernel install --user --name=PROJECTNAME | |
| # Start Jupyter lab | |
| jupyter lab | |
| # And choose the above kernel in the list when asked |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment