gpt4 book ai didi

node.js - -bash : react-native: command not found

转载 作者:IT老高 更新时间:2023-10-28 22:09:13 28 4
gpt4 key购买 nike

我已经成功安装了brew、node 4.0+、watchman和flow,当我执行npm install -g react-native-cli时收到如下信息:

/Users/home/.node/bin/react-native -> /Users/home/.node/lib/node_modules/react-native-cli/index.js
react-native-cli@0.1.5 /Users/home/.node/lib/node_modules/react-native-cli
└── prompt@0.2.14 (revalidator@0.1.8, pkginfo@0.3.1, read@1.0.7, winston@0.8.3, utile@0.2.1)

所以我假设 react-native-cli 也已成功安装。但是,当我运行 react-native 时,它会说:

-bash: react-native: command not found

我的 Node 版本是 4.2.1,watchman 3.9,brew 0.9.5 (git 7ed6) 和 npm 2.14.7

最佳答案

您必须确保 /usr/local/share/npm/bin 在您的 PATH 中,才能使用通过 npm 安装的二进制文件。

将以下内容添加到您的 ~/.bashrc:

export PATH="/usr/local/share/npm/bin:$PATH"

然后重新加载你的 shell session 。


如果你发现你没有 /usr/local/share/npm/bin 目录,你的 npm 可能会在另一个位置安装它的包。在这种情况下,您必须在上面的行中使用正确的路径。

找到该路径的一种解决方案是运行:

npm list -g | head -n 1

这为您提供了 npm 安装其软件包的路径。这不是您想要的路径,但它很接近。例如在我的 Linux 上,它给出了 /home/baptiste/.linuxbrew/lib;将 lib 替换为 bin 即可获得正确的路径:

export PATH="/home/baptiste/.linuxbrew/bin:$PATH"

您可以使用 $HOME 来获取您自己的主目录:

export PATH="$HOME/.linuxbrew/bin:$PATH"

关于node.js - -bash : react-native: command not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33282545/

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