prefix-dev / rip

Solve and install Python packages quickly with rip (pip in Rust)
https://prefix.dev
BSD 3-Clause "New" or "Revised" License
655 stars 23 forks source link

feat: implement bytecode/pyc compilation #103

Closed baszalmstra closed 11 months ago

baszalmstra commented 11 months ago

Adds pyc compilation.

Since most of the time we want to install multiple wheels at the same time and since starting the Python interpreter has a non-negligable amount of overhead, a compilation daemon is spawned as a subprocess.

Closes #60