(no title)
3PS | 1 year ago
1. It's written in Python, which makes it slower and prone to bootstrapping issues.
2. It doesn't manage your Python installation, which necessitates the use of a tool like pyenv.
Rye sidesteps both of those by (a) being written in Rust and (b) trying to solve all of the problems solved by poetry and pyenv in one go.
noisy_boy|1 year ago
With rye, I activated a virtualenv and then created a new project, it proceeded to setup its own .venv within the project instead of just using the one that was already activated.
rtpg|1 year ago
Kwpolska|1 year ago
As for managing Pythons, I would consider this to be orthogonal to packaging, and the default system Python is often good enough.
the_mitsuhiko|1 year ago
thelastbender12|1 year ago
I also don't see why leaning into python being a wrapper around rust/cpp/c is a bad thing. Each language has its own niche and packaging/bootstrapping is more of a systems level language problem.