gpt4 book ai didi

node.js - 在 mac high sierra 上安装 npm

转载 作者:搜寻专家 更新时间:2023-11-01 00:37:09 26 4
gpt4 key购买 nike

我想在 mac high sierra 上安装 node.js 和 npm。
https://gist.github.com/rcugut/c7abd2a425bb65da3c61d8341cd4b02d
我通过 Homebrew 软件成功安装了 node.js,但无法安装 NPM
我该怎么办?


Hoyeongui-MacBook-Air:~ hoyeongkim$ node -v
v8.9.1
Hoyeongui-MacBook-Air:~ hoyeongkim$ curl -L https://www.npmjs.com/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 6255 100 6255 0 0 2628 0 0:00:02 0:00:02 --:--:-- 2629
tar=/usr/bin/tar
version:
bsdtar 2.8.3 - libarchive 2.8.3
install npm@latest
fetching: https://registry.npmjs.org/npm/-/npm-5.5.1.tgz
module.js:538
throw err;
^

Error: Cannot find module '/private/var/folders/jn/6wwl3xfd25x94ky333nhcxb80000gn/T/npm.58735/package/bin/read-package-json.js'
at Function.Module._resolveFilename (module.js:536:15)
at Function.Module._load (module.js:466:25)
at Function.Module.runMain (module.js:676:10)
at startup (bootstrap_node.js:187:16)
at bootstrap_node.js:608:3
added 1 package and removed 1 package in 0.846s
/usr/local/Cellar/node/8.9.1/bin/npm -> /usr/local/Cellar/node/8.9.1/lib/node_modules/npm/bin/npm-cli.js
/usr/local/Cellar/node/8.9.1/bin/npx -> /usr/local/Cellar/node/8.9.1/lib/node_modules/npm/bin/npx-cli.js
+ npm@5.5.1
updated 1 package in 1.687s
It worked

Hoyeongui-MacBook-Air:~ hoyeongkim$ npm
-bash: npm: command not found

最佳答案

我已经更详细地研究了这个。我用 homebrew 安装了 node 并在一开始就将我的 PATH 设置为 /usr/local/bin 所以我选择了所有的 Homebrew 二进制文件。

因此,如果我检查哪个二进制文件和哪个版本的 node,我会发现我正在运行 homebrew 安装的那个:

which node
/usr/local/bin/node

并且它是 homebrew 安装的版本:

node -v
v8.9.1

nodehomebrew 安装也自动安装了 npm 完全一样:

which npm
/usr/local/bin/npm

这也是最新的:

npm -v
5.5.1

所以,我不确定您为什么要尝试从源代码安装 npm - 只需使用 homebrew 提供的源代码即可。


如果我查看与 homebrew 安装 node 相关的文件,我可以看到它包括 npm:

brew ls node --verbose | grep 'npm$' 

示例输出

/usr/local/Cellar/node/8.9.1/etc/bash_completion.d/npm
/usr/local/Cellar/node/8.9.1/libexec/bin/npm
/usr/local/Cellar/node/8.9.1/libexec/lib/node_modules/npm/bin/npm

关于node.js - 在 mac high sierra 上安装 npm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47487447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com