Don't recommend sudo for pip

https://packaging.python.org/tutorials/installing-packages/
This commit is contained in:
Chris Mayo 2020-06-01 19:48:26 +01:00
parent 00e715cd71
commit 8dcdb4d387
2 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ See `doc/install.txt`_ in the source code archive for general information. Excep
Python 3.5 or later is needed.
The version in the pip repository is old. Instead, you can use pip to install the latest release from git: ``sudo pip3 install git+https://github.com/linkchecker/linkchecker.git``. See `#359 <https://github.com/linkchecker/linkchecker/issues/359>`_.
The version in the pip repository is old. Instead, you can use pip to install the latest release from git: ``pip3 install git+https://github.com/linkchecker/linkchecker.git``. See `#359 <https://github.com/linkchecker/linkchecker/issues/359>`_.
Windows builds are seriously lagging behind the Linux releases, see `#53 <https://github.com/linkchecker/linkchecker/issues/53>`_ for details. For now, the only two options are to install from source or use `Docker for Windows <https://www.docker.com/docker-windows>`_.

View file

@ -10,9 +10,9 @@ the local system:
.. _pip: https://pypi.org/project/pip/
``sudo pip3 install LinkChecker``
``pip3 install LinkChecker``
You can also use pip to install the latest from git: ``sudo pip3 install git+https://github.com/linkchecker/linkchecker.git``.
You can also use pip to install the latest from git: ``pip3 install git+https://github.com/linkchecker/linkchecker.git``.
Setup for Windows
-----------------