使用npm安裝node-sass時(shí),或者安裝需要python2的依賴時(shí),會報(bào)出以下錯(cuò)誤。
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 (E:\codes\proviet\client-nuxt\node_modules\which\which.js:13:12)
gyp verb `which` failed at F (E:\codes\proviet\client-nuxt\node_modules\which\which.js:68:19)
gyp verb `which` failed at E (E:\codes\proviet\client-nuxt\node_modules\which\which.js:80:29)
gyp verb `which` failed at E:\codes\proviet\client-nuxt\node_modules\which\which.js:89:16
gyp verb `which` failed at E:\codes\proviet\client-nuxt\node_modules\isexe\index.js:42:5
gyp verb `which` failed at E:\codes\proviet\client-nuxt\node_modules\isexe\windows.js:36:5
gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:183:21)
gyp verb `which` failed python2 Error: not found: python2
gyp verb `which` failed at getNotFoundError (E:\codes\proviet\client-nuxt\node_modules\which\which.js:13:12)
gyp verb `which` failed at E:\codes\proviet\client-nuxt\node_modules\isexe\index.js:42:5
gyp verb `which` failed at E:\codes\proviet\client-nuxt\node_modules\isexe\windows.js:36:5
gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:183: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 C:\Program Files\python\python.EXE
gyp ERR! configure error
gyp ERR! stack Error: Command failed: C:\Program Files\python\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: invalid syntax
gyp ERR! stack
gyp ERR! stack at ChildProcess.exithandler (child_process.js:308:12)
gyp ERR! stack at ChildProcess.emit (events.js:315:20)
gyp ERR! stack at maybeClose (internal/child_process.js:1048:16)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5)
gyp ERR! System Windows_NT 10.0.19042
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "E:\\codes\\proviet\\client-nuxt\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd E:\codes\proviet\client-nuxt\node_modules\node-sass
gyp ERR! node -v v14.16.0
復(fù)制代碼
解決方案一:
1. 安裝python2
- 可以用npm命令安裝
npm install -g node-gyp
復(fù)制代碼
- 也可以自行下載安裝 Python 2.7
2. 安裝完畢后配置環(huán)境變量
npm config set python python2.7
復(fù)制代碼
3.再配置一下版本
npm config set msvs_version 2017
復(fù)制代碼
修改完畢,之后就可以正常安裝node-sass了,如果還不行就使用淘寶鏡像。
解決方案二(推薦)
node-sass
實(shí)在太坑了,之前遇到安裝失敗使用方法一完美解決。最近又一次遇到了,但是方法一又無效了。于是我又在網(wǎng)上找到另一個(gè)方法,就是用dart-sass
來替換node-sass
。
正常的替換也會出問題,還要改配置。使用以下方法便可以解決 yarn安裝的:文章來源:http://www.zghlxwxcb.cn/news/detail-538241.html
yarn add node-sass@yarn:dart-sass -D
復(fù)制代碼
npm安裝的:文章來源地址http://www.zghlxwxcb.cn/news/detail-538241.html
yarn add node-sass@npm:dart-sass -D
到了這里,關(guān)于安裝node-sass失敗 或 npm install Error: not found: python2 解決方案的文章就介紹完了。如果您還想了解更多內(nèi)容,請?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!