【问题标题】:errors while installing gulp-sass on linux manjaro在 linux manjaro 上安装 gulp-sass 时出错
【发布时间】:2021-08-22 21:41:21
【问题描述】:

当我尝试安装 gulp-sass 时,我得到了很多错误。我最近从我的 windows 机器切换到我的 linux 机器,并且在 windows 上它工作得非常好。现在,当我尝试安装 gulp (npm install gulp) 时,它工作正常。但是当我尝试安装 gulp-sass (npm install gulp-sass) 之后,我得到了很多错误。

npm ERR! code 1
npm ERR! path /home/pera/Desktop/Server/node_modules/node-sass
npm ERR! command failed
npm ERR! command sh -c node scripts/build.js
npm ERR! Building: /home/pera/.nvm/versions/node/v16.3.0/bin/node /home/pera/Desktop/Server/node_modules/node-gyp/bin/node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp verb cli [
npm ERR! gyp verb cli   '/home/pera/.nvm/versions/node/v16.3.0/bin/node',
npm ERR! gyp verb cli   '/home/pera/Desktop/Server/node_modules/node-gyp/bin/node-gyp.js',
npm ERR! gyp verb cli   'rebuild',
npm ERR! gyp verb cli   '--verbose',
npm ERR! gyp verb cli   '--libsass_ext=',
npm ERR! gyp verb cli   '--libsass_cflags=',
npm ERR! gyp verb cli   '--libsass_ldflags=',
npm ERR! gyp verb cli   '--libsass_library='
npm ERR! gyp verb cli ]
npm ERR! gyp info using node-gyp@3.8.0
npm ERR! gyp info using node@16.3.0 | linux | x64
npm ERR! gyp verb command rebuild []
npm ERR! gyp verb command clean []
npm ERR! gyp verb clean removing "build" directory
npm ERR! gyp verb command configure []
npm ERR! gyp verb check python checking for Python executable "python2" in the PATH
npm ERR! gyp verb `which` failed Error: not found: python2
npm ERR! gyp verb `which` failed     at getNotFoundError (/home/pera/Desktop/Server/node_modules/which/which.js:13:12)
npm ERR! gyp verb `which` failed     at F (/home/pera/Desktop/Server/node_modules/which/which.js:68:19)
npm ERR! gyp verb `which` failed     at E (/home/pera/Desktop/Server/node_modules/which/which.js:80:29)
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/which/which.js:89:16
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/isexe/index.js:42:5
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/isexe/mode.js:8:5
npm ERR! gyp verb `which` failed     at FSReqCallback.oncomplete (node:fs:195:21)
npm ERR! gyp verb `which` failed  python2 Error: not found: python2
npm ERR! gyp verb `which` failed     at getNotFoundError (/home/pera/Desktop/Server/node_modules/which/which.js:13:12)
npm ERR! gyp verb `which` failed     at F (/home/pera/Desktop/Server/node_modules/which/which.js:68:19)
npm ERR! gyp verb `which` failed     at E (/home/pera/Desktop/Server/node_modules/which/which.js:80:29)
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/which/which.js:89:16
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/isexe/index.js:42:5
npm ERR! gyp verb `which` failed     at /home/pera/Desktop/Server/node_modules/isexe/mode.js:8:5
npm ERR! gyp verb `which` failed     at FSReqCallback.oncomplete (node:fs:195:21) {
npm ERR! gyp verb `which` failed   code: 'ENOENT'
npm ERR! gyp verb `which` failed }
npm ERR! gyp verb check python checking for Python executable "python" in the PATH
npm ERR! gyp verb `which` succeeded python /usr/bin/python
npm ERR! gyp ERR! configure error 
npm ERR! gyp ERR! stack Error: Command failed: /usr/bin/python -c import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack   File "<string>", line 1
npm ERR! gyp ERR! stack     import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack                       ^
npm ERR! gyp ERR! stack SyntaxError: invalid syntax
npm ERR! gyp ERR! stack 
npm ERR! gyp ERR! stack     at ChildProcess.exithandler (node:child_process:326:12)
npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:394:28)
npm ERR! gyp ERR! stack     at maybeClose (node:internal/child_process:1067:16)
npm ERR! gyp ERR! stack     at Socket.<anonymous> (node:internal/child_process:453:11)
npm ERR! gyp ERR! stack     at Socket.emit (node:events:394:28)
npm ERR! gyp ERR! stack     at Pipe.<anonymous> (node:net:661:12)
npm ERR! gyp ERR! System Linux 5.10.36-2-MANJARO
npm ERR! gyp ERR! command "/home/pera/.nvm/versions/node/v16.3.0/bin/node" "/home/pera/Desktop/Server/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
npm ERR! gyp ERR! cwd /home/pera/Desktop/Server/node_modules/node-sass
npm ERR! gyp ERR! node -v v16.3.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok 
npm ERR! Build failed with error code: 1

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/pera/.npm/_logs/2021-06-04T21_00_45_303Z-debug.log

【问题讨论】:

    标签: node.js sass gulp manjaro


    【解决方案1】:

    来自您的日志:

    python2 Error: not found: python2
    

    node-gyp 找不到 python2,所以它回退到 /usr/bin/python 这将是 python3。

    然后:

    import sys; print "%s.%s.%s" % sys.version_info[:3];
    

    python3 中的“打印”语法已更改,因此不再有效。

    安装 Python2,您将解决此错误。

    【讨论】:

      猜你喜欢
      • 2018-08-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-01-19
      • 2016-03-07
      • 2018-12-02
      相关资源
      最近更新 更多