window在安装composer的时候报如下错误:
The PHP exe file you specified did not run correctly [exit code 1]:
D:\ProgramFiles\phpstudy_pro\Extensions\php\php8.2.19nts\php.exe
Reported error: 函数不正确。
Program Output:
PHP Warning: 'C:\Windows\SYSTEM32\VCRUNTIME140.dll' 14.13 is not compatible with this PHP build linked with 14.29
出现这个错误信息表明你的系统上安装的 VCRUNTIME140.dll 版本与你尝试运行的 PHP 版本不兼容,确保你使用的 PHP 版本(例如 PHP 8.2.19 nts)指定了需要的 Visual C++ Redistributable 版本。PHP 版本是使用特定版本的 Visual C++ Redistributable 编译的,使用不兼容的版本可能会导致问题
解决方法:
1、下载并安装 Visual C++ Redistributable:https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
2、安装完成之后重新安装composer即可解决问题,不在报错。
文章评论(0)