cool-easter-32542
03/27/2023, 1:33 AMpython -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:
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/pantscool-easter-32542
04/27/2023, 12:13 AM