From 1a24420a53c454d32b9efe0713e25bb4a0ac1840 Mon Sep 17 00:00:00 2001 From: Christopher Quion Date: Tue, 27 Mar 2018 13:28:13 -0400 Subject: [PATCH] Adds Additional Dependency to Install Guide (#250) With the DPDK upgrade to v17.08, we need to install another dependency - libnuma-dev. This change updates the install guide to reflect that. Commit log: new DPDK (17.08) introduces libnuma dependency --- docs/Install.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/Install.md b/docs/Install.md index 41dcc9555..721595441 100644 --- a/docs/Install.md +++ b/docs/Install.md @@ -25,6 +25,10 @@ Check System ```sh locate uio ``` +5. Install libnuma + ```sh + sudo apt-get install libnuma-dev + ``` Setup Repositories --