exec: "cmd": executable file not found in %PATH% 问题求助-Arduino中文社区 - Powered by Discuz! Archiver

橙汁君 发表于 2022-6-20 20:45

exec: "cmd": executable file not found in %PATH% 问题求助

exec: "cmd": executable file not found in %PATH%
为开发板 ESP32 Dev Module 编译时出错。

不知道为何 只有1.0.4的版本可以正常编译,再新的都用不了。rtrtrt

库是安装的置顶帖给的安装包了。先删除原来的再用管理员方式安装的。
供电不足应该也不会,外部供电加上串口的。
代码如下

void setup() {
// put your setup code here, to run once:
Serial.begin(115200); //初始化串口并设置波特率为115200
}

void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello World!"); //打印Hello World!并回车换行
delay(1000); //延时等待1s
}


橙汁君 发表于 2022-6-20 21:21

问题已解决:环境变量中的Path加入c:\windows\system32文件夹,网上搜到的都是加入c:\windows\system32\cmd.exe
页: [1]
查看完整版本: exec: "cmd": executable file not found in %PATH% 问题求助