LinuxCommandLibrary

pip-wheel

TLDR

Build wheel from package

$ pip wheel [package]
copy
Build wheels to directory
$ pip wheel -w [wheeldir] [package]
copy
Build from requirements file
$ pip wheel -r requirements.txt
copy
Build wheel from local project
$ pip wheel .
copy

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

Copied to clipboard