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?