当我尝试在我的本地安装vue商店前,但当我尝试“yarn install”命令时,我得到以下错误。如何解决这个错误?如何解决这个错误?

error /var/www/html/vue-storefront/node_modules/node-sass: Command failed.
Exit code: 1
Command: node scripts/build.js
Arguments: 
Directory: /var/www/html/vue-storefront/node_modules/node-sass
Output:
Building: /usr/bin/node /var/www/html/vue-storefront/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   '/usr/bin/node',
gyp verb cli   '/var/www/html/vue-storefront/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@13.9.0 | linux | 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 "/usr/bin/python3.6" in the PATH
gyp verb `which` succeeded /usr/bin/python3.6 /usr/bin/python3.6
gyp ERR! configure error 
gyp ERR! stack Error: Command failed: /usr/bin/python3.6 -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: invalid syntax
gyp ERR! stack 
gyp ERR! stack     at ChildProcess.exithandler (child_process.js:303:12)
gyp ERR! stack     at ChildProcess.emit (events.js:321:20)
gyp ERR! stack     at maybeClose (internal/child_process.js:1026:16)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)
gyp ERR! System Linux 4.15.0-88-generic
gyp ERR! command "/usr/bin/node" "/var/www/html/vue-storefront/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd /var/www/html/vue-storefront/node_modules/node-sass
gyp ERR! node -v v13.9.0

当前回答

TBH,我的问题是我试图“npm install angular-cli”而不是“npm install @angular/cli”,希望这能帮助其他像我一样的傻瓜:)

其他回答

当我使用比当前支持的Node -sass(4.9)版本更新的Node (16 via nvm)时,我遇到了这个问题。回到节点10可以缓解这个问题。Ângelo Polotto的答案有一个很好的兼容性图表。

我在容器化VueJs应用程序时遇到了这个问题。 我之前使用node:15.12.0-alpine标记作为基本映像,但当我更改为使用debian-stretch的完整节点映像(node:15.12.0)时,这个问题就得到了解决。

通过run来检测当前NPM配置的python路径: $ NPM配置python

如果它不是你当前的python路径,那么通过run改变它: $ npm config set python=<YOUR_PYTHON_DIR_PATH>

(例如,在我的机器中,它是:C:\python311)

从个人角度来看,你最好使用:

 yarn add axios

我正在运行Rails 6,由于某种原因,它正在拉webpacker 4.3.0,它正在拉node-sass 4.3.0,而不是6.0.0,这是截至本文发布之日的最新版本。

对我有效的方法如下:

删除node_module文件夹,package-lock。Json和yarn.lock 在我的包裹里。我升级了rails/webpacker: 5.3.0。 然后我重新运行纱线安装。 然后我运行yarn add node-sass

在尝试了以上所有方法之后,这个方法非常有效。

我相信这些是确切的步骤,尽管说实话,我已经尝试了很多事情,他们没有工作,我终于得到了它的工作,所以有可能我可能错过了一个步骤,但我尽了最大的努力为任何未来沮丧的灵魂重新创造它。