Skip to content

Instantly share code, notes, and snippets.

@GenevieveBuckley
Created May 1, 2019 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GenevieveBuckley/5fac19c33bd73e22943d5d85a37eb9c3 to your computer and use it in GitHub Desktop.
Save GenevieveBuckley/5fac19c33bd73e22943d5d85a37eb9c3 to your computer and use it in GitHub Desktop.
Creating python wheels
# Installing a python wheel
pip install some-package.whl
# Creating a python wheel
pip wheel --wheel-dir=path/to/save/wheel wheel_filename
# See https://python101.pythonlibrary.org/chapter39_wheels.html
# PEP427 (describes the wheel format)
# https://www.python.org/dev/peps/pep-0427/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment