Quantcast
Channel: Planet Python
Viewing all articles
Browse latest Browse all 24353

Python⇒Speed: Making pip installs a little less slow

$
0
0

Installing your Python application’s dependencies can be surprisingly slow. Whether you’re running tests in CI, building a Docker image, or installing an application, downloading and installing dependencies can take a while.

So how do you speed up installation with pip?

In this article I’ll cover:

  • Avoiding the slow path of installing from source.
  • pip download speed, and the alternatives: Pipenv and Poetry.
  • A useful pip option that can, sometimes, speed up installation significantly.
Read more...

Viewing all articles
Browse latest Browse all 24353

Trending Articles