python-ml-research-template icon indicating copy to clipboard operation
python-ml-research-template copied to clipboard

[UX] Avoid rebuilding the project

Open skandermoalla opened this issue 1 year ago • 1 comments

installing the project with pip install -e . goes through a build phase and needs to download and install build dependencies. Sometimes this is not needed if the project is just Python code, or if it can be cashed. How can this be avoided? It creates a delay at the start of every container.

skandermoalla avatar May 12 '24 17:05 skandermoalla

#27 adds the build dependencies in the images and builds without isolation. This makes the build much faster in the cases where it's only Python code to link.

skandermoalla avatar Sep 20 '24 17:09 skandermoalla