We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682da88 commit bf5a65bCopy full SHA for bf5a65b
builder/frameworks/espidf.py
@@ -27,6 +27,7 @@
27
import shutil
28
import os
29
import pkg_resources
30
+import platform as sys_platform
31
32
import click
33
import semantic_version
@@ -1108,6 +1109,9 @@ def _get_installed_pip_packages(python_exe_path):
1108
1109
"esp-idf-kconfig": "~=1.2.0"
1110
}
1111
1112
+ if sys_platform.system() == "Darwin" and "arm" in sys_platform.machine().lower():
1113
+ deps["chardet"] = ">=3.0.2,<4"
1114
+
1115
python_exe_path = get_python_exe()
1116
installed_packages = _get_installed_pip_packages(python_exe_path)
1117
packages_to_install = []
0 commit comments