-
|
Hi! I'm new to the Python tooling ecosystem and trying to understand modern practices. I noticed Why isn't Just looking to learn - thanks for any insight 🤔 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Great question!
We recommend The one thing to note is that |
Beta Was this translation helpful? Give feedback.
Great question!
pipxactually works fine here — there's nothing uv-specific about the project. You can install with:pipx install git+https://github.com/github/spec-kit.gitWe recommend
uvin the docs because it's what we use internally and it handles Python version management alongside package installation, but the project uses a standardhatchlingbuild backend and standard entry points, so any tool that can install from a git source will work.The one thing to note is that
specify-cliisn't published on PyPI (and there are unrelated packages with similar names there), so whether you useuvorpipx, you'll need the fullgit+https://...URL.