Skip to content

Instantly share code, notes, and snippets.

@andriimazur93
Created October 22, 2019 18:13
Show Gist options
  • Select an option

  • Save andriimazur93/2ca16700d1fd59a078fed5526595993a to your computer and use it in GitHub Desktop.

Select an option

Save andriimazur93/2ca16700d1fd59a078fed5526595993a to your computer and use it in GitHub Desktop.
Running jupyter notebook with pipenv (Windows)
#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