run ipython inside pipenv

Solutions on MaxInterview for run ipython inside pipenv by the best coders in the world

showing results for - "run ipython inside pipenv"
Paula
20 Mar 2016
1pipenv install ipykernel
2pipenv shell
3# This will bring up a terminal in your virtualenv like this:
4
5(my-virtualenv-name) bash-4.4$
6In that shell do:
7
8python -m ipykernel install --user --name=my-virtualenv-name
9#Launch jupyter notebook:
10
11jupyter notebook
12#In your notebook, Kernel -> Change Kernel.
13#Your kernel should now be an option.
14
15
Alessandro
19 Feb 2016
1pipenv install ipython
2python -m IPython