You need to add keel to make jupyter recognize venv's environment.
add to
(my_venv) C:\> pip install ipykernel
(my_venv) C:\> ipython kernel install --user --name=my_venv
Once added, you can select it from the Change kernel on the [Kernel] tab of the jupy ternote book.
Delete
C:\> jupyter kernelspec uninstall my_venv
If you do not delete it when you no longer use it, it will remain forever.
Recommended Posts