From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id CAB7C1B5CD for ; Fri, 14 Dec 2018 00:06:20 +0100 (CET) Received: from vc2.ecl.ntt.co.jp (vc2.ecl.ntt.co.jp [129.60.86.154]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id wBDN6IA5025910; Fri, 14 Dec 2018 08:06:18 +0900 Received: from vc2.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id C9CDC638654; Fri, 14 Dec 2018 08:06:18 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id BBEA263842C; Fri, 14 Dec 2018 08:06:18 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Fri, 14 Dec 2018 08:03:56 +0900 Message-Id: <1544742243-32554-2-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1544742243-32554-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> References: <1544580212-9309-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> <1544742243-32554-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH v2 1/8] docs: update Getting Started section X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Dec 2018 23:06:21 -0000 From: Yasufumi Ogawa Update the description of supported versions of Python to explain that Python2 is going to be not supported in future release. Signed-off-by: Yasufumi Ogawa --- docs/guides/setup/getting_started.rst | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/guides/setup/getting_started.rst b/docs/guides/setup/getting_started.rst index ca639db..896090d 100644 --- a/docs/guides/setup/getting_started.rst +++ b/docs/guides/setup/getting_started.rst @@ -206,10 +206,13 @@ Python 2 or 3 ? ~~~~~~~~~~~~~~~ You need to install Python for using usertools of DPDK or SPP controller. -DPDK and SPP support both of Python2 and 3. +DPDK supports both of Python2 and 3. Howevrer, Python2 will not be maintained after 2020 and SPP is going to update only supporting Python3. +In SPP, it supports both of Python2 and 3 without spp-ctl currently, but is +going to support only Python3 before the end of 2019. + Binding Network Ports to DPDK ----------------------------- @@ -380,8 +383,11 @@ Compiled PDF file is created as ``docs/guides/_build/html/SoftPatchPanel.pdf``. $ make doc-pdf -You can also compile both of HTML and PDF documentations with ``doc-all``. +You can also compile both of HTML and PDF documentations with ``doc`` or +``doc-all``. .. code-block:: console + $ make doc + # or $ make doc-all -- 2.7.4