Answers for "run ipython inside pipenv"

0

jupyter kernel pipenv

pipenv install ipykernel
pipenv shell
# This will bring up a terminal in your virtualenv like this:

(my-virtualenv-name) bash-4.4$
In that shell do:

python -m ipykernel install --user --name=my-virtualenv-name
#Launch jupyter notebook:

jupyter notebook
#In your notebook, Kernel -> Change Kernel.
#Your kernel should now be an option.
Posted by: Guest on August-10-2020
0

run ipython inside pipenv

pipenv install ipython
python -m IPython
Posted by: Guest on January-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language