i am new to aurdino and esp32 cam .....i got this error
Arduino: 1.8.19 (Linux), Board: "AI Thinker ESP32-CAM, 240MHz (WiFi/BT), QIO, 80MHz"
and my code is just a example code.
Used: /home/sahil/.arduino15/packages/esp32/hardware/esp32/1.0.6/libraries/WiFi
Not used: /home/sahil/Downloads/arduino-1.8.19/libraries/WiFi
exec: "python": executable file not found in $PATH
Error compiling for board AI Thinker ESP32-CAM.
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
i think my board is not of ai thinker any idea from photo which board is this this is my setup this is photo of my esp32 cam
1)i have tried to install ftdi driver 2)tried to search online for my esp32 cam board driver (or whatever ai thinker is)
2 Answers 2
You select board ESP32 Wrover Module if that doesn't work you make this Plug gpo0 into gnp
1 Comment
This issue typically arises when the Python executable isn't installed or isn't accessible via the system's PATH variable.
To resolve this issue, you can follow these steps:
Install Python: Make sure Python is installed on your computer. You can download Python from the official website (https://www.python.org/) and follow the installation instructions for your operating system.
Update PATH Variable:
For Windows: During Python installation, ensure you select the option to add Python to PATH. If it's already installed, you can manually add the Python installation directory to your PATH. For macOS and Linux: Python is usually included by default, but you might need to check if it's correctly configured in your PATH. You can do this by opening a terminal and typing python --version. If it's not recognized, you might need to add it to your PATH in your shell configuration file (e.g., .bashrc, .zshrc). Restart Arduino IDE: After installing or updating Python and adjusting your PATH, restart the Arduino IDE to ensure it recognizes the changes. Also can try this https://airbrush.com
Once Python is correctly set up and Arduino IDE can find it in the PATH, you should be able to compile your code for the AI Thinker ESP32-CAM board without encountering the "executable file not found" error.