最下面是之前的答案诀艰。我發(fā)現(xiàn)這個問題其實不那么簡單,是因為搜索gypfailed with exit code:1還不夠具體,看看報的錯誤笼恰,其實可以更詳細(xì)一些的踊沸。分隔符下面的是之前的一種解決方案,這種解決方案只解決報文件node-gyp/lib/configure.js:305:16的錯社证,如果是這個問題參考最下面的解決方案逼龟。如果不是,那仔細(xì)看自己的問題追葡,有時候還會發(fā)現(xiàn)另一種問題就是如下的問題:
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
File "/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 147, in <module>
...
ValueError: unsupported hash type md5
ERROR:root:code for hash sha1 was not found.
...
ValueError: unsupported hash type sha224
ERROR:root:code for hash sha256 was not found
...
File "/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py", line 152, in <module>
_new_sha1 = hashlib.sha1
AttributeError: 'module' object has no attribute 'sha1'
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:345:16)
gyp ERR! stack at ChildProcess.emit (events.js:189:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:248:12)
gyp ERR! System Darwin 19.5.0
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/eric/Desktop/admin-web/node_modules/watchpack-chokidar2/node_modules/fsevents
gyp ERR! node -v v10.15.3
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
仔細(xì)看這個問題腺律,主要是/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py這個文件出了錯,而且出錯的都是md5和sha1加密之類的方法沒找到宜肉。所以這個文件出的問題匀钧,應(yīng)該是由于我們電腦環(huán)境引起的,電腦中肯定某個庫除了問題谬返,導(dǎo)致執(zhí)行這個文件的時候和加密相關(guān)的庫或方法都掛了之斯。所以搜索的時候可以詳細(xì)搜索mac ERROR:root:code for hash md5 was not found之類的,而且在bing.com國際版上搜索遣铝,這樣StackOverflow上如果有相關(guān)問題可以直接看到佑刷。果不其然啊,有一個問題再這里酿炸,和我們遇到的情況是一樣的瘫絮,主要原因是我們電腦上的openssl出問題了√钏叮可能是由于我們之前安裝了多個版本的python麦萤,又或者是我們自己又安裝了什么軟件里面自帶了openssl和電腦自有的發(fā)生了沖突之類的”饷校總之就是這個家伙了壮莹。所以,我們需要重新指定一下恋拍。
先看看是什么版本垛孔,我的是1.0.2o_1
ls /usr/local/Cellar/openssl
指定切換到這個版本
brew switch openssl 1.0.2o_1
輸出以下這樣的就成功了
Cleaning /usr/local/Cellar/openssl/1.0.2o_1
Opt link created for /usr/local/Cellar/openssl/1.0.2o_1
1施敢、問題描述
npm安裝的時候報錯周荐,網(wǎng)上各種卸載重裝node-gyp的方法試了都沒用,是沒找到問題根源:
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:305:16)
gyp ERR! stack at emitTwo (events.js:106:13)
gyp ERR! stack at ChildProcess.emit (events.js:191:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
gyp ERR! System Darwin 16.0.0
gyp ERR! command "/usr/local/Cellar/node/8.1.3/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/project/node_modules/ckmeans
gyp ERR! node -v vxx
gyp ERR! node-gyp -v vxxx
gyp ERR! not ok
2僵娃、原因猜測
gyp是一個編譯工具概作,類似于makefile這種命令,它主要用來編譯C++的默怨,node里面集成了它讯榕,叫做node-gyp。
npm分發(fā)的都是源碼,npm install的時候都是拉取源碼后在本地編譯愚屁,這個時候因為不可避免的济竹,源碼里面用到其他語言,比如C或者C++霎槐,所以編譯的時候送浊,就需要其他語言的編譯工具比如node-gyp,但這些編譯工具其實在不同系統(tǒng)中也是依賴不同系統(tǒng)的編譯工具的丘跌,比如在mac中袭景,這個node-gyp其實是依賴xcode提供的那些編譯工具來具體執(zhí)行的,所以我碰到的問題就在這里闭树,是xcode的工具除了問題耸棒,xcode的工具管理是xcode-select,需要重新設(shè)置或者安裝或者重置一下报辱。
3与殃、解決方案
具體解決方案見schnerd/d3-scale-cluster的一個issue:
要不要sudo看自己當(dāng)前用戶是不是有sudo權(quán)限
$ [sudo] xcode-select --install
xcode-select: error: command line tools are already installed,
use "Software Update" to install updates
提示已經(jīng)安裝的話,就重置
[sudo] xcode-select --reset