|
|
|
|
|
by kwertzzz
1377 days ago
|
|
One solution that I often hear about Python packages is the use of wheels.
But I am wondering how this can work when multiple package depend (directly or indirectly) on a C library like zlib. As far as I know, there is no authority that decides which zlib version should be used. So I package A uses zlib.so.1 but package B uses zlib.so.2 can both be loaded at the same time ? (the version numbers are just examples for two incompatible version numbers) |
|