1

I'm using Windows 10. I want to upload some basic code to my NodeMCU module.

Code:

void setup() { // put your setup code here, to run once: pinMode(D0, OUTPUT); pinMode(D1, OUTPUT); pinMode(D2, OUTPUT); pinMode(D3, OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(D0, HIGH); } 

But when it's compiling Showing this error.

exec: "{runtime.tools.python.path}/python": file does not exist Error compiling for board NodeMCU 1.0 (ESP-12E Module). 

What should I do for this error?

4
  • 1
    Looks like your build process requires Python to be installed and on the PATH. Commented Nov 3, 2019 at 6:26
  • I don't know how to add it. Commented Nov 3, 2019 at 6:27
  • 1
    Did you install Arduino IDE as documented here arduino-esp8266.readthedocs.io/en/latest/installing.html ? Commented Nov 3, 2019 at 19:39
  • I reset my PC.. Commented Nov 22, 2019 at 6:28

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.