|
@@ -180,10 +180,10 @@ The python packages required by ESP-IDF are located in ``IDF_PATH/requirements.t
|
|
|
.. note::
|
|
.. note::
|
|
|
|
|
|
|
|
Please check the version of the Python interpreter that you will be using with ESP-IDF. For this, run
|
|
Please check the version of the Python interpreter that you will be using with ESP-IDF. For this, run
|
|
|
- the command ``python --version`` and depending on the result, you might want to use ``python2``, ``python2.7``
|
|
|
|
|
|
|
+ the command ``python --version`` and depending on the result, you might want to use ``python3``, ``python3.7``
|
|
|
or similar instead of just ``python``, e.g.::
|
|
or similar instead of just ``python``, e.g.::
|
|
|
|
|
|
|
|
- python2.7 -m pip install --user -r $IDF_PATH/requirements.txt
|
|
|
|
|
|
|
+ python3 -m pip install --user -r $IDF_PATH/requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
.. _get-started-start-project-legacy:
|
|
.. _get-started-start-project-legacy:
|
|
@@ -283,10 +283,6 @@ To navigate and use ``menuconfig``, press the following keys:
|
|
|
* ``?`` while highlighting a configuration item to display help about that item
|
|
* ``?`` while highlighting a configuration item to display help about that item
|
|
|
* ``/`` to find configuration items
|
|
* ``/`` to find configuration items
|
|
|
|
|
|
|
|
-.. note::
|
|
|
|
|
-
|
|
|
|
|
- If you are **Arch Linux** user, navigate to ``SDK tool configuration`` and change the name of ``Python 2 interpreter`` from ``python`` to ``python2``.
|
|
|
|
|
-
|
|
|
|
|
.. attention::
|
|
.. attention::
|
|
|
|
|
|
|
|
If you use ESP32-DevKitC board with the **ESP32-SOLO-1** module, enable single core mode (:ref:`CONFIG_FREERTOS_UNICORE`) in menuconfig before flashing examples.
|
|
If you use ESP32-DevKitC board with the **ESP32-SOLO-1** module, enable single core mode (:ref:`CONFIG_FREERTOS_UNICORE`) in menuconfig before flashing examples.
|