summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2017-02-17 00:52:07 +0700
committerMartin Winter <mwinter@opensourcerouting.org>2017-02-17 00:52:07 +0700
commit783c4c8fa36f0e9ca12a5303e41487db5afb87cc (patch)
tree783fc7617bcd10f8f219ca70e11cb8ae775d78ad
parenteb651bbceb018fca7873bef03c5b4221a9765b3b (diff)
doc: Fix pytest installation instructions on Ubuntu 12.04
Ubuntu 12.04 doesn't have a pytest package - needs to be installed with pip Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
-rw-r--r--doc/Building_FRR_on_Ubuntu1204.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/Building_FRR_on_Ubuntu1204.md b/doc/Building_FRR_on_Ubuntu1204.md
index 60b714d4d2..3312a2c9c8 100644
--- a/doc/Building_FRR_on_Ubuntu1204.md
+++ b/doc/Building_FRR_on_Ubuntu1204.md
@@ -13,7 +13,7 @@ Add packages:
apt-get install git autoconf automake libtool make gawk libreadline-dev \
texinfo libpam0g-dev dejagnu libjson0 pkg-config libpam0g-dev \
- libjson0-dev flex python-pytest
+ libjson0-dev flex python-pip
Install newer bison from 14.04 package source (Ubuntu 12.04 package source
is too old)
@@ -51,6 +51,10 @@ Install newer version of autoconf and automake:
sudo make install
cd ..
+Install pytest:
+
+ pip install pytest
+
Get FRR, compile it and install it (from Git)
---------------------------------------------