Skip to content

Instantly share code, notes, and snippets.

@davydany
Created August 25, 2017 22:23
Show Gist options
  • Save davydany/25dc9e2a83504437fca4fc648cf2341b to your computer and use it in GitHub Desktop.
Save davydany/25dc9e2a83504437fca4fc648cf2341b to your computer and use it in GitHub Desktop.
PIP Wheel ALL THE THINGS!

Using pip wheels

Installation Instructions

Before using pip Wheels, you need to install the wheels library.

pip install wheel

Help Documentation for pip wheel

pip help wheel

Generate Wheels for your Project from requirements.txt

This will dump the wheels into a ./wheels directory.

pip wheel -w ./wheels -r requirements.txt

Install from Wheels

You can now install from the wheels directory only:

pip install -r requirements.txt --find-links ./wheels
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment