pip-wheel
TLDR
Build wheel from package
$ pip wheel [package]
Build wheels to directory$ pip wheel -w [wheeldir] [package]
Build from requirements file$ pip wheel -r requirements.txt
Build wheel from local project$ pip wheel .
SYNOPSIS
pip wheel [options] packages...
DESCRIPTION
pip wheel builds wheel archives for packages and dependencies. Wheels are pre-built binary distributions that install faster than source distributions. Useful for creating local wheels for offline installation or deployment.
PARAMETERS
-w, --wheel-dir dir
Build wheels to directory.-r, --requirement file
Build from requirements file.--no-deps
Don't build dependencies.--no-build-isolation
Disable build isolation.--src dir
Source directory for editable projects.
SEE ALSO
pip(1), pip-download(1), pip-install(1)


