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

Python

6287 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
[โ€“] UlrikHD 8 points 1 year ago (1 children)

Wheels is something you use when packaging your module for upload. You will automatically use a wheel package if the module you are downloading was uploaded using wheels and your pc config is compatible with the wheel package.

What wheels does is it pre builds the module for a given system (doesn't need to be a very specific system) so that you don't have to do it locally when installing (if you got a compatible config).

It's not something users have to think about, for them wheel package == smaller and faster install. Pip will by default prioritise wheel package over source.

[โ€“] [email protected] 1 points 1 year ago

Oh okay awesome! So Iโ€™m probably already benefitting from this. Thanks for the explanation!