nvim-ipy
nvim-ipy copied to clipboard
How to connect to virtualenv?
How can I use nvim-ipy with a virtualenv?
@ipsod you can install ipykernel in the virtualenv, then register the kernel with python -m ipykernel install --user --name my-venv. You will then be able to run :IPython --kernel my-venv. This is the same technique that you would use for running Jupyter Notebook/Lab with kernels in virtual environments.