Replies: 1 comment
|
Use the [pypi-dependencies]
pkgname = { path = "../pkgname", editable = true }That is the closest managed equivalent to the default
[dependencies]
pkgname = { path = "../pkgname" }In Pixi 0.76.2, |
8000
|
Use the [pypi-dependencies]
pkgname = { path = "../pkgname", editable = true }That is the closest managed equivalent to the default
[dependencies]
pkgname = { path = "../pkgname" }In Pixi 0.76.2, |
Uh oh!
There was an error while loading. Please reload this page.
I am transitioning a conda env to pixi where
conda developis used.I see that the pip-equivalent (
pip install -e) is supported by something like:What would be the equivalent of the conda version? I was expecting:
to work, but it does not...
All reactions