Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 14360

pip install -e vs without in terms of preformance

$
0
0

I develop some dependencies locally and I have a dep_requirements.txt file that looks like this:

-e path_to_dependency_1-e path_to_dependency_2-e path_to_dependency_3

Is it ok to leave it that way for production when building the production docker? Or I should remove the -e because it prevents Python caching, "compiling" or something else?

I'm basically asking, is -e (editable) problematic to use in production environment? will it harm performance


Viewing all articles
Browse latest Browse all 14360

Trending Articles