this post was submitted on 13 Oct 2023
307 points (80.9% liked)

Programmer Humor

32371 readers
483 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Sorry Python but it is what it is.

top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 74 points 1 year ago (3 children)

So you are saying that npm is better than pip?? I'm not saying pip is good, but npm?

[–] [email protected] 35 points 1 year ago (4 children)

npm has a lockfile which makes it infinitely better.

[–] [email protected] 21 points 1 year ago (6 children)

pip also has lock files

pip freeze > requirements.txt

[–] [email protected] 7 points 1 year ago (1 children)

Would that just create a list of the current packages/versions without actually locking anything?

[–] [email protected] 8 points 1 year ago* (last edited 1 year ago) (4 children)

Would that just create a list of the current packages/versions

Yes, and all downstream dependencies

without actually locking anything?

What do you mean? Nothing stops someone from manually installing an npm package that differs from package-lock.json - this behaves the same. If you pip install -r requirements.txt it installs the exact versions specified by the package maintainer, just like npm install the only difference is python requires you to specify the "lock file" instead of implicitly reading one from the CWD

load more comments (4 replies)
load more comments (5 replies)
load more comments (3 replies)
load more comments (2 replies)
[–] Fashim 33 points 1 year ago

NPM is ghastly though

[–] [email protected] 30 points 1 year ago

npm is just plain up terrible. never worked for me first try without doing weird stuff

[–] [email protected] 27 points 1 year ago* (last edited 1 year ago) (7 children)

I don't know what cargo is, but npm is the second worst package manager I've ever used after nuget.

[–] [email protected] 27 points 1 year ago

cargo is the package manager for the Rust language

[–] [email protected] 10 points 1 year ago (1 children)

I've never had an issue with nuget, at least since dotnet core. My experience has it far ahead of npm and pip

[–] [email protected] 8 points 1 year ago* (last edited 1 year ago) (1 children)

I'll second this. I would argue that .Net Core's package/dependency management in general is way better than Python or JavaScript. Typically it just works and when it doesn't it's not too difficult to fix.

load more comments (1 replies)
load more comments (5 replies)
[–] [email protected] 21 points 1 year ago (1 children)

Memes like this make me ever more confused about my own software work flow. I'm in engineering so you can already guess my coding classes were pretty surface level at least at my uni and CC

Conda is what I like to use for data science but I still barely understand how to maintain a package manager. Im lowkey a bot when it comes to using non-GUI programs and tbh that paradigm shift has been hard after 18 years of no CLI usage.

The memes are pretty educational though

[–] [email protected] 35 points 1 year ago (4 children)

Try not to learn too much from memes, they're mostly wrong. Conda is good, if you're looking for something more modern (for Python) I'd suggest Poetry

load more comments (4 replies)
[–] LazaroFilm 18 points 1 year ago (3 children)
load more comments (3 replies)
[–] [email protected] 17 points 1 year ago (2 children)

This is why I use poetry for python nowadays. Pip just feels like something ancient next to Cargo, Stack, Julia, npm, etc.

load more comments (2 replies)
[–] Alfika07 16 points 1 year ago

What about CPAN?

You can't even use it without the documentation of the program that you want to install because some dependencies have to be installed manually, and even then there's a chance of the installation not working because a unit test would fail.

[–] [email protected] 13 points 1 year ago (1 children)

i will get hated for this but: cargo > composer > pip > npm

load more comments (1 replies)
[–] [email protected] 9 points 1 year ago (1 children)

the only time i've had issues with pip is when using it to install the xonsh shell, but that's not really pip's fault since that's a very niche case and i wouldn't expect any language's package manager to handle installing something so fundamental anyways.

load more comments (1 replies)
[–] [email protected] 8 points 1 year ago (21 children)

Bruh idk why the difference... Educate me?

load more comments (21 replies)
[–] [email protected] 7 points 1 year ago (5 children)
load more comments (5 replies)
[–] waz 7 points 1 year ago (2 children)

Getting into rust is still on my to-do list, otherwise I've no major problem with pip or npm. They both have their flaws, but both work well enough to do what I need them for. If I had to prefer one it would be pip simply to sustain my passionate hate for all things JavaScript.

load more comments (2 replies)
[–] [email protected] 7 points 1 year ago

No one here has yet complained about Cocoapods and Carthage? I'm traumatized. Thank God for SwiftPM

load more comments
view more: next ›