diff options
| -rw-r--r-- | docs/user_guide.rst | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/docs/user_guide.rst b/docs/user_guide.rst index 121b86d..6517258 100644 --- a/docs/user_guide.rst +++ b/docs/user_guide.rst @@ -79,22 +79,8 @@ This can be changed with the ``--dest-dir`` option:: Installing Wheels ----------------- -.. note:: The ``wheel install`` command is merely a Proof-Of-Concept - implementation and lacks many features provided by pip_. It is meant only - as an example for implementors of packaging tools. End users should use - ``pip install`` instead. +To install a wheel file, use pip_:: -To install a wheel file in ``site-packages``:: - - $ wheel install someproject-1.5.0-py2-py3-none.whl - -This will unpack the archive in your current site packages directory and -install any console scripts contained in the wheel. - -You can accomplish the same in two separate steps (with ``<site-packages-dir>`` -being the path to your ``site-packages`` directory:: - - $ wheel unpack -d <site-packages-dir> someproject-X.Y.Z-py2-py3-none.whl - $ wheel install-scripts someproject + $ pip install someproject-1.5.0-py2-py3-none.whl .. _pip: https://pypi.org/project/pip/ |
