diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-04 00:13:44 +0300 |
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-04 00:13:44 +0300 |
| commit | a113a35d6bac32bb1c53dc9b8d7dfad9f603ddfe (patch) | |
| tree | 562ece2d6788c56b49791bc543d277371b354aa5 | |
| parent | f60e5fd3d1d5ff88968713061edba96024a5e235 (diff) | |
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 <iryzhov@nfware.com>
| -rw-r--r-- | doc/developer/building-frr-for-ubuntu2004.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
