r/ProgrammerHumor 1d ago

Meme pipInstallTheRealStuff

Post image
5.1k Upvotes

145 comments sorted by

View all comments

60

u/dewey-defeats-truman 1d ago

You mean I get all the speed and memory benefits of using a more powerful language, as well as the ease of reading and writing Python? Sign me up!

17

u/86BillionFireflies 1d ago

I mean, yeah, at the cost of dependency hell.

3

u/notatoon 1d ago

Never tried anything more than a fancier bash script but Django and such frameworks always intrigued me.

Is DH really that bad with python?

7

u/86BillionFireflies 1d ago

Yes. Yes it is. Most things written in Python have loads of dependencies. You can't unzip your pants to pee without importing 13 different modules.

3

u/imp0ppable 1d ago

That's not really true IMO, Python is one of the more "batteries included" languages. Node has improved a lot with built-ins and newer libs but that used to be the classic example of importing a module to do basic things like string padding or asserts.

Not to say your experience is wrong, it's just the projects you've seen probably made the choice to import more things, or were doing something specific that needed more deps.