npm install 出现 gyp ERR! configure error

时间:2024-03-31 12:29:23

在git clone项目的时候,项目文件中没有node_modules文件夹,项目的依赖文件比较大,这时候需要自己去安装依赖文件。
在项目的文件夹中通过执行cmd命令:npm install 【根据package.json文件中的依赖配置,下载安装】
如果正常安装,则执行命令:npm run dev 【启动项目】
若执行命令npm install,安装过程中有出现grp ERR! configure error
错误问题如下图:
npm install 出现 gyp ERR! configure error
出现这种情况,可能是node-sass没安装好,可以使用下面命令进行安装:
cnpm install [email protected]
安装后,出现的界面如图:
npm install 出现 gyp ERR! configure error
安装成功后,再执行命令
npm run dev 启动项目,就可以正常打开页面