this post was submitted on 30 Sep 2024
35 points (83.0% liked)

Python

6281 readers
68 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ertai@programming.dev 21 points 2 weeks ago* (last edited 2 weeks ago) (4 children)

Yet another python packager............... insane that such a popular language still doesn't have this basic problem solved.

[–] FizzyOrange@programming.dev 7 points 2 weeks ago

Yeah but this one is actually good. So hopefully it will displace all the others.

[–] sum_yung_gai@lemm.ee 3 points 2 weeks ago

I use poetry and it works really well. I would consider it solved but that doesn't mean there isn't the possibility of a better solution.

[–] CodeMonkey@programming.dev 3 points 2 weeks ago (4 children)

pip is a perfectly usable package manager and is included in most python distributions now. Is it perfect? No, but it is good enough for every team I have been on.

[–] astrojuanlu@social.coop 11 points 2 weeks ago

@CodeMonkey @ertai No it is not perfectly usable for all people, all projects, all situations. uv definitely gets much closer to that.

[–] eager_eagle@lemmy.world 5 points 2 weeks ago* (last edited 2 weeks ago)

it's usable, yet it doesn't attempt to solve a a third of the problems uv, poetry, and pdm address.

it's also not hard to end up with a broken env with pip.

[–] Moc@lemmy.world 5 points 2 weeks ago

Except that it’s slower than uv and therefore strictly worse for build processes

[–] uthredii@programming.dev 1 points 1 week ago

Putting aside the speed uv has a bunch of features that usually require 2-4 separate tools. These tools are very popular but not very well liked. The fact these tools are so popular proves that pip is not sufficient for many use cases. Other languages have a single tool (e.g. cargo) that are very well liked.

[–] ertai@programming.dev 1 points 2 weeks ago

Glad I use arch btw, pacman manages my python packages so I don't have to deal with all this mess.