You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mktmpenv
cd ~/Projects/wheel-test
time pip install -r requirements.txt --no-index --find-links=sources
[...]
real 0m59.484s
user 0m41.635s
sys 0m16.635s
Wheels
mktmpenv
cd ~/Projects/wheel-test
time pip install -r requirements.txt --no-index --find-links=wheels --use-wheel
[...]
real 0m6.572s
user 0m3.714s
sys 0m2.331s
Part of "Why Wheels?|" is the speed factor, we should show that.
I'm thinking something like:
pip install -r requirements.txt --download-cache=sources
&pip wheel -r requirements.txt --wheel-dir=wheels
)time
.The text was updated successfully, but these errors were encountered: