Created
October 22, 2019 18:13
-
-
Save andriimazur93/2ca16700d1fd59a078fed5526595993a to your computer and use it in GitHub Desktop.
Running jupyter notebook with pipenv (Windows)
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
| #Method 1 | |
| pipenv install ipykernel jupyter | |
| pipenv shell | |
| python -m ipykernel install --user --name=my-virtualenv-name | |
| jupyter notebook | |
| #Method 2 | |
| pipenv shell | |
| pipenv install jupyter | |
| pipenv run jupyter notebook |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment