From: Igor Ryzhov Date: Wed, 3 Mar 2021 21:13:44 +0000 (+0300) Subject: doc: fix link for python2 get-pip.py X-Git-Tag: base_8.0~321^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=a113a35d6bac32bb1c53dc9b8d7dfad9f603ddfe;p=mirror%2Ffrr.git doc: fix link for python2 get-pip.py Script by the current link doesn't work with Python 2 anymore: ``` ERROR: This script does not work on Python 2.7 The minimum supported Python version is 3.6. Please use https://bootstrap.pypa.io/2.7/get-pip.py instead. ``` Signed-off-by: Igor Ryzhov --- diff --git a/doc/developer/building-frr-for-ubuntu2004.rst b/doc/developer/building-frr-for-ubuntu2004.rst index f7f8c63e5b..ef5d8da551 100644 --- a/doc/developer/building-frr-for-ubuntu2004.rst +++ b/doc/developer/building-frr-for-ubuntu2004.rst @@ -27,7 +27,7 @@ ubuntu apt repositories; in order to install it: .. code-block:: shell - curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py + curl https://bootstrap.pypa.io/2.7/get-pip.py --output get-pip.py sudo python2 ./get-pip.py # And verify the installation