this post was submitted on 12 Aug 2023
36 points (100.0% liked)

Python

6416 readers
4 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
[โ€“] coffeewithalex 2 points 1 year ago

Shipping binaries is a double-edged sword. On one hand it's fast and simple, on the other hand you rely on the vendor to do it right. Confluent doesn't ship binaries built on musl, Microsoft doesn't ship binaries for arm64 (and has often failed to make it obvious, so the binary will install, but not work), nobody ships binaries for armv7.

Having this double world is a bit painful. Especially that once it's shipped as a binary, the vendor doesn't care very much about source distributions, so there's missing instructions, bad documentation (like how to install on alpine, and that you need librdkafka of the same version as the python package for confluent-kafka), and just a whole world where a junior or even mid level developer will get lost.

I think that there needs to be more focus on delivering good source distributions, with everything included, since publishers don't keep up with the variety of target platforms. And building from source is quite often fast, since machines are fast.