summaryrefslogtreecommitdiff
path: root/docs/reference/pip_wheel.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/reference/pip_wheel.rst')
-rw-r--r--docs/reference/pip_wheel.rst37
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/reference/pip_wheel.rst b/docs/reference/pip_wheel.rst
new file mode 100644
index 000000000..e64f383c1
--- /dev/null
+++ b/docs/reference/pip_wheel.rst
@@ -0,0 +1,37 @@
+
+.. _`pip wheel`:
+
+pip wheel
+---------
+
+.. contents::
+
+Usage
+*****
+
+.. pip-command-usage:: wheel
+
+
+Description
+***********
+
+.. pip-command-description:: wheel
+
+
+Options
+*******
+
+.. pip-command-options:: wheel
+
+.. pip-index-options::
+
+
+Examples
+********
+
+1. Build wheels for a requirement (and all its dependencies), and then install
+
+ ::
+
+ $ pip wheel --wheel-dir=/tmp/wheelhouse SomePackage
+ $ pip install --no-index --find-links=/tmp/wheelhouse SomePackage