@@ -4,21 +4,21 @@ Installing stand alone command line tools
44Many 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
1010Usually you want to be able to access these from anywhere,
1111but installing packages and their dependencies to the same global environment
1212can cause version conflicts and break dependencies the operating system has
1313on 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
1616environment for each package, while also ensuring that package's applications
1717are accessible through a directory that is on your ``$PATH ``. This allows each
1818package to be upgraded or uninstalled without causing conflicts with other
1919packages, 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
112112You can learn more about ``pipx `` at its homepage,
113- https://github.com/pipxproject /pipx.
113+ https://github.com/pypa /pipx.
0 commit comments