From e13d3220c23532eccb21f3a652f57a42d04a55d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Piln=C3=BD?= Date: Tue, 22 Aug 2023 11:49:42 +0200 Subject: [PATCH] Split commands for KConfig install + changed pip install to code-tab --- Documentation/quickstart/install.rst | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/Documentation/quickstart/install.rst b/Documentation/quickstart/install.rst index a54020577b3..2451eda8ad0 100644 --- a/Documentation/quickstart/install.rst +++ b/Documentation/quickstart/install.rst @@ -39,7 +39,6 @@ First, install the following set of system dependencies according to your Operat gmp-devel mpfr-devel libmpc-devel isl-devel binutils-devel elfutils-libelf-devel \ expat-devel gcc-c++ g++ picocom uboot-tools util-linux - .. tab:: macOS Run the following command to install packages: @@ -82,26 +81,41 @@ NuttX configuration system uses `KConfig ` by default, which is a Kconfig tool implemented in Python 2/3. Compared with kconfig-frontends, kconfiglib provides NuttX with the possibility of multi-platform support(configure NuttX in Winodws native/Visual Studio), and also kconfiglib has a stronger Kconfig syntax check, this will help developers to avoid some Kconfig syntax errors. Install kconfiglib via following command: - .. tabs:: + .. code-tab:: $ pip install kconfiglib If you are a working on Windows, which also need the support of windows-curses: - .. tabs:: + .. code-tab:: $ pip install windows-curses .. tip::