<#18594 Enable a .venv export that includes -e ins...
# github-notifications
c
#18594 Enable a .venv export that includes -e installed development packages Issue created by SimonBiggs I am trying to use the .venv created by pants as a Jupyter Kernel by running:
Copy code
python -m ipykernel install --user --name monorepo
And then using that kernel within Jupyter Lab. However, the packages I am currently working on are not included within the exported venv which I create by calling:
Copy code
pants export --resolve=python-default
As such, I am currently activating the venv, and then manually installing each of my packages within my monorepo with the
pip install -e
approach. Ideally, we could export a standard .venv for use with IDEs and Jupyter that is simple, standard, and includes each of our packages installed via -e with pip. pantsbuild/pants