Ignore sub-dependencies in pyproject.toml
A package I want to include in my pyproject.toml
, itself depends on torch
, which I don’t want automatically installing since it takes up a lot of space and my currently installed version already works with it.
How to have a pip editable install not install dependencies that are already installed in editable mode
I am often working on multiple python packages with interdependencies defined in pyproject.toml. I want them all installed in editable mode, which seems harder than it should be. What I want to do is to: