Is there a command equivalent to "pip install -e ." for pixi? #3292
hanruiyao163
started this conversation in
General
Replies: 2 comments 2 replies
-
and what is the equivalent command to “pip install "sglang[all]>=0.4.3.post4" --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python” |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can add an editable package with: # [tool.pixi.pypi-dependencies] in pyproject.toml
[pypi-dependencies]
package = {path = ".", editable = true} and the find-links can be added with: # [tool.pixi.project.pypi-options] in pyproject.toml
[project.pypi-options]
find-links = [{ url = "https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python"] |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a command equivalent to "pip install -e ." for pixi?
Beta Was this translation helpful? Give feedback.
All reactions