Skip to content

Commit 6af2b47

Browse files
committed
chore: move pipx to pypa
1 parent 8f7d3fe commit 6af2b47

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

source/guides/installing-stand-alone-command-line-tools.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ Installing stand alone command line tools
44
Many packages have command line entry points. Examples of this type of application are
55
`mypy <https://github.com/python/mypy>`_,
66
`flake8 <https://github.com/PyCQA/flake8>`_,
7-
`pipenv <https://github.com/pypa/pipenv>`_,and
7+
:ref:`pipenv`,and
88
`black <https://github.com/ambv/black>`_.
99

1010
Usually you want to be able to access these from anywhere,
1111
but installing packages and their dependencies to the same global environment
1212
can cause version conflicts and break dependencies the operating system has
1313
on Python packages.
1414

15-
`pipx <https://github.com/pipxproject/pipx>`_ solves this by creating a virtual
15+
:ref:`pipx` solves this by creating a virtual
1616
environment for each package, while also ensuring that package's applications
1717
are accessible through a directory that is on your ``$PATH``. This allows each
1818
package to be upgraded or uninstalled without causing conflicts with other
1919
packages, and allows you to safely run the program from anywhere.
2020

21-
.. Note:: pipx only works with Python 3.6+.
21+
.. note:: pipx only works with Python 3.6+.
2222

2323
``pipx`` is installed with ``pip``:
2424

@@ -110,4 +110,4 @@ To see the full list of commands ``pipx`` offers, run
110110
$ pipx --help
111111

112112
You can learn more about ``pipx`` at its homepage,
113-
https://github.com/pipxproject/pipx.
113+
https://github.com/pypa/pipx.

source/key_projects.rst

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,18 @@ Pipfile
165165
application-centric alternative to :ref:`pip`'s lower-level
166166
:file:`requirements.txt` file.
167167

168+
.. _pipx:
169+
170+
pipx
171+
====
172+
173+
`Docs <https://pypa.github.io/pipx/>`__ |
174+
`GitHub <https://github.com/pypa/pipx>`__ |
175+
`PyPI <https://pypi.org/project/pipx/>`__
176+
177+
pipx is a tool to safely install and run Python CLI applications globally
178+
or even install and run them directly in a single line.
179+
168180

169181
Python Packaging User Guide
170182
===========================
@@ -473,17 +485,6 @@ files, standalone Python environments in the spirit of :ref:`virtualenv`.
473485
``#!/usr/bin/env python`` and special :file:`__main__.py`, and are designed to
474486
make deployment of Python applications as simple as ``cp``.
475487

476-
.. _pipx:
477-
478-
pipx
479-
====
480-
481-
`Docs <https://pipxproject.github.io/pipx/>`__ |
482-
`GitHub <https://github.com/pipxproject/pipx>`__ |
483-
`PyPI <https://pypi.org/project/pipx/>`__
484-
485-
pipx is a tool to safely install and run Python CLI applications globally.
486-
487488
.. _pip-tools:
488489

489490
pip-tools

0 commit comments

Comments
 (0)