突然在我的一个jenkins环境构建已经开始失败,而在本地机器,它似乎工作得很好,因为我有python安装,

从日志中,我能够检测到问题是内部依赖关系,即node-gyp v3.5.0从node-sass v3.8.0,当我通过访问这篇关于node-gyp的文章进行研究时,我发现了Python需要安装的先决条件。

所以我的问题是,我可以安装哪个版本的node-sass来绕过这个,或者有更好的解决方案,因为我的构建在相同的环境上运行良好,直到今天早上。

节点v5.10.1

错误日志

gyp verb check python checking for Python executable "python2" in the PATH
gyp verb `which` failed Error: not found: python2
gyp verb `which` failed     at getNotFoundError (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:13:12)
gyp verb `which` failed     at F (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:68:19)
gyp verb `which` failed     at E (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:80:29)
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:89:16
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\isexe\index.js:44:5
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\isexe\windows.js:29:5
gyp verb `which` failed     at FSReqWrap.oncomplete (fs.js:82:15)
gyp verb `which` failed  python2 { [Error: not found: python2] code: 'ENOENT' }
gyp verb check python checking for Python executable "python" in the PATH
gyp verb `which` failed Error: not found: python
gyp verb `which` failed     at getNotFoundError (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:13:12)
gyp verb `which` failed     at F (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:68:19)
gyp verb `which` failed     at E (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:80:29)
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\which\which.js:89:16
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\isexe\index.js:44:5
gyp verb `which` failed     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\isexe\windows.js:29:5
gyp verb `which` failed     at FSReqWrap.oncomplete (fs.js:82:15)
gyp verb `which` failed  python { [Error: not found: python] code: 'ENOENT' }
gyp verb could not find "python". checking python launcher 
gyp verb could not find "python". guessing location 
gyp verb ensuring that file exists: C:\Python27\python.exe
gyp ERR! configure error 
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
gyp ERR! stack     at Object.failNoPython (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\node-gyp\lib\configure.js:454:19)
gyp ERR! stack     at Object.<anonymous> (C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\node-gyp\lib\configure.js:480:16)
gyp ERR! stack     at C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack     at FSReqWrap.oncomplete (fs.js:82:15)
gyp ERR! System Windows_NT 6.3.9600
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files (x86)\\Jenkins\\jobs\\NdbSite-hot-fix-Manual-PreBuild\\workspace\\src\\NdbSite.UI\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd C:\Program Files (x86)\Jenkins\jobs\NdbSite-hot-fix-Manual-PreBuild\workspace\src\NdbSite.UI\node_modules\node-sass
gyp ERR! node -v v5.10.1
gyp ERR! node-gyp -v v3.5.0
gyp ERR! not ok 
Build failed

任何想法都非常感激,谢谢。


当前回答

windows 11机器的一个简单解决方案是,

删除package-lock。Json文件和node_modules/文件夹。 以管理员身份打开Windows终端。 执行命令npm i -g node-sass。 进入项目文件夹并运行npm install 现在用npm start运行项目

其他回答

我的操作系统是win10 x64。 在进行npm安装时也发现了类似的问题。

检查节点版本号是否与node-sass版本号一致。(参考以上表格)如果需要,升级或降级节点版本 删除“node_modules”文件夹 install node-sass@ $ NPM install

做得很好。

最近我在Windows上遇到了这样的情况。我通过以下步骤修复它使用一个具有管理权限的PowerShell:

删除node_modulesfolder 使用管理权限运行NPM install——global windows-build-tools。(在我的情况下需要重启-和重启没有问!!) 使用NPM install重新安装节点模块或node-sass

如果节点版本更新,NPM -g将工作。我遇到了这个问题,npm install -g——production windows-build-tools作为临时解决方案。但是从长期来看,升级Node.js、NPM和相关的包版本是一个更好的选择。

node-sass已于2020年10月26日弃用

不需要安装旧版本的Python,只需迁移到dart.sass即可

对于我的ReactJS项目(npm),以下步骤对我有效:

从项目中删除node_modules 在包中。Json,删除这个 依赖: “依赖”:{ …, :“node-sass ^ 3.0.0”, ... } NPM install——save-dev sass npm安装 现在尝试使用npm start运行你的项目 如果你收到一个类似于"To import Sass files, you first need To install node-sass"的错误,执行如下命令: NPM安装node-sass@npm:sass

如果你正在使用yarn,执行相同的命令,但在最后一步执行这个命令,如下所述: 纱线拆卸节点 纱加纱


我的答案可能并不适用于所有人。 节点版本号:v10.16.0 NPM: 6.9.0

我在使用node-sass和node-sass-中间件时遇到了很多麻烦。它们是有趣的包,因为它们被广泛使用(每周有数百万次下载),但它们的github显示出有限的依赖性和覆盖范围。我当时正在更新自己开发的一个旧平台。

我最后不得不做的是:

1)手动删除node_modules

2)手动删除package-lock.json

3) sudo NPM install node-sass——not - safe-perm=true——allow-root

4) sudo NPM install node-sass-middleware——not - safe-perm=true——allow-root

我得到了以下帮助,谢谢!

未为grpc@1.10.1和node@10.9.0找到预构建的二进制文件

错误:EACCES:当尝试使用npm安装ESLint时,权限被拒绝