From 54af3660ee1fc8115844c3e7db4604496cd13db0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 14 Sep 2024 13:14:07 +0300 Subject: [PATCH] Update Linux section --- faq/install-python.rst | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/faq/install-python.rst b/faq/install-python.rst index 60fe95ff8c..e56bd6a628 100644 --- a/faq/install-python.rst +++ b/faq/install-python.rst @@ -20,6 +20,15 @@ is installed by default on all the popular OSs except Windows. Please navigate to official website and `Download the latest Python `_ and install it. Please **READ NOTES BELOW**. +:Linux: + Most linux distributions will include a Python installation already. You may need to ensure that the Python Virtual Environment is installed. + + Debian/Ubuntu derivatives have this package in Apt as ``python3-venv``. + + ``sudo apt install python3-venv`` should be all that is required. + + For more details, please check the `platformio-core-installer/issues/85 `__. + :macOS: Please read the "Important Information" displayed during installation for information about SSL/TLS certificate validation and the running the **"Install Certificates.command"**. @@ -32,10 +41,3 @@ and install it. Please **READ NOTES BELOW**. not be available. .. image:: ../_static/images/python-installer-add-path.png - -:Linux: - Most linux distributions will include a Python installation already. You may need to ensure that the Python Virtual Environment is installed. - - Debian/Ubuntu derivatives have this package in Apt as ``python3-venv``. - - ``sudo apt install python3-venv`` should be all that is required.