From 0e3928dc984d6f1e13a9385dcfdf538019f1a138 Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Thu, 4 Mar 2021 00:13:44 +0300 Subject: [PATCH] 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 --- doc/developer/building-frr-for-ubuntu2004.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5