npm install hexo-renderer-sass时报错
在安装配置hexo博客的时候,有的主题需要安装
npm install hexo-renderer-sass • 1
在敲完这行命令之后,结果报错超时
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap. npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. > node-sass@4.14.1 install D:\Hexo\blog\node_modules\node-sass > node scripts/install.js Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/win32-x64-83_binding.node Cannot download "https://github.com/sass/node-sass/releases/download/v4.14.1/win32-x64-83_binding.node": ESOCKETTIMEDOUT Hint: If github.com is not accessible in your location try setting a proxy via HTTP_PROXY, e.g. export HTTP_PROXY=http://example.com:1234 or configure npm proxy via npm config set proxy http://example.com:8080 > node-sass@4.14.1 postinstall D:\Hexo\blog\node_modules\node-sass > node scripts/build.js Building: D:\environment\nodejs\node.exe D:\Hexo\blog\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library= gyp info it worked if it ends with ok gyp verb cli [ gyp verb cli 'D:\\environment\\nodejs\\node.exe', gyp verb cli 'D:\\Hexo\\blog\\node_modules\\node-gyp\\bin\\node-gyp.js', gyp verb cli 'rebuild', gyp verb cli '--verbose', gyp verb cli '--libsass_ext=', gyp verb cli '--libsass_cflags=', gyp verb cli '--libsass_ldflags=', gyp verb cli '--libsass_library=' gyp verb cli ] gyp info using node-gyp@3.8.0 gyp info using node@14.18.1 | win32 | x64 gyp verb command rebuild [] gyp verb command clean [] gyp verb clean removing "build" directory gyp verb command configure [] 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 (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:13:12) gyp verb `which` failed at F (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:68:19) gyp verb `which` failed at E (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:80:29) gyp verb `which` failed at D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:89:16 gyp verb `which` failed at D:\Hexo\blog\node_modules\isexe\index.js:42:5 gyp verb `which` failed at D:\Hexo\blog\node_modules\isexe\windows.js:36:5 gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:191:21) gyp verb `which` failed python2 Error: not found: python2 gyp verb `which` failed at getNotFoundError (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:13:12) gyp verb `which` failed at F (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:68:19) gyp verb `which` failed at E (D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:80:29) gyp verb `which` failed at D:\Hexo\blog\node_modules\node-gyp\node_modules\which\which.js:89:16 gyp verb `which` failed at D:\Hexo\blog\node_modules\isexe\index.js:42:5 gyp verb `which` failed at D:\Hexo\blog\node_modules\isexe\windows.js:36:5 gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:191:21) { gyp verb `which` failed code: 'ENOENT' gyp verb `which` failed } gyp verb check python checking for Python executable "python" in the PATH gyp verb `which` succeeded python D:\Python310\python.EXE gyp ERR! configure error gyp ERR! stack Error: Command failed: D:\Python310\python.EXE -c import sys; print "%s.%s.%s" % sys.version_info[:3]; gyp ERR! stack File "<string>", line 1 gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3]; gyp ERR! stack ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ gyp ERR! stack SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)? gyp ERR! stack gyp ERR! stack at ChildProcess.exithandler (child_process.js:383:12) gyp ERR! stack at ChildProcess.emit (events.js:400:28) gyp ERR! stack at maybeClose (internal/child_process.js:1058:16) gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:293:5) gyp ERR! System Windows_NT 10.0.19044 gyp ERR! command "D:\\environment\\nodejs\\node.exe" "D:\\Hexo\\blog\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library=" gyp ERR! cwd D:\Hexo\blog\node_modules\node-sass gyp ERR! node -v v14.18.1 gyp ERR! node-gyp -v v3.8.0 gyp ERR! not ok Build failed with error code: 1 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! node-sass@4.14.1 postinstall: `node scripts/build.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the node-sass@4.14.1 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! D:\environment\node\node_global\_logs\2022-07-17T11_45_00_103Z-debug.log
如下图所示:
解决办法:更新镜像源
于是在网上找了一下资料,说是要切换一下镜像源
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org
再次执行
npm install hexo-renderer-sass
可以看到成功了,如下图