Hardware/ESP

맥북으로 ESP32 보드 컴파일시에 "python" 관련 에러가 떴다.

초인로크 2022. 5. 12. 15:40
반응형

맥북 프로 M1 Max macOS Monterey에서 사용하던 중에

 

ESP32-DevKitC-32D 보드에 소스를 업로드하려고 하니

 

아래와 같이

 

"exec: "python": executable file not found in $PATH"라고

 

에러가 뜨는 게 아닌가.

 

'

아래의 글에서 힌트를 얻어서 수정 하니까 컴파일이 원래대로 되었다.

 

https://stackoverflow.com/questions/71143707/exec-python-executable-file-not-found-in-path-on-arduino-ide

 

exec: "python": executable file not found in $PATH on Arduino IDE

So I'm trying to run this really simple code on my LCD display, using an ESP32. When I compile the code in the Arduino IDE I get no errors. But, when I try to upload it, I get the following error: ...

stackoverflow.com

 

sed -i -e 's/=python /=python3 /g' ~/Library/Arduino15/packages/esp32/hardware/esp32/*/platform.txt

 

위의 명령어를 터미널에 입력하고 나서는 아래와 같이 컴파일이 잘 되었다.

 

 

다행이다..

 

새 맥북을 사용 할 때마다 여러 가지 문제가 생기는 듯하다.

 

 

반응형