Hacker News new | ask | show | jobs
by leg100 2886 days ago
There doesn't seem to be really fast way to check if everything is up to date or not:

  $ pipenv install numpy scipy pandas matplotlib requests
  ....
  ....installs everything
  ....
  $ time pipenv sync
  Installing dependencies from Pipfile.lock (3f6ae1)…
        15/15 — 00:00:05
  All dependencies are now up-to-date!

  real	0m7.219s
  user	0m15.645s
  sys	0m1.406s
Why does it take so long just to check a bunch of hashes? Is there a better command?