Conda has the conda develop command, which can be used to add paths to local python projects (e.g. self-written libraries that aren't distributed as packages) to the module path of an environment.
How can I achieve a similar effect with mamba / micromamba (or even independently of the package manager)? The lack of solutions I was able to find on this question makes me wonder if maybe the conda develop solution is an anti-pattern.
I would also prefer a solution that doesn't require me to package my dependency library (so that it e.g. can be installed via pip install -e)