小编典典

react-native:找不到命令

all

-bash: react-native: command not found error在创建一个 react-native 项目时得到了。

以下是附加信息

1. brew --version
   homebrew 0.9.9
2  brew info watchman
   watchman `enter code here`stable 4.50
   /usr/local/Cellar/watchman/4.4.0
3. brew info flow
   stable 0.24.1
   /usr/local/Cellar/flow/0.24.1
4. brew info node
   stable 6.1.0
   /usr/local/Cellar/node/6.1.0
5. npm -version
   3.8.6
6. echo $PATH
/Users/Ashok/.rbenv/shims:/Users/Ashok/.rbenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin

我尝试了此链接中建议的步骤,但仍然遇到相同的错误。

我没有他们在解决方案中指定的任何“npm”目录

Ashoks-MacBook-Pro:share Ashok$ ls
aclocal     doc     info        ruby-build  zsh
autoconf    emacs       man     systemtap

但我发现 npm 文件存在于以下位置。

/usr/local/Cellar/node/6.1.0/etc/bash_completion.d

我卸载了 react-native 并再次安装了它,但我仍然面临同样的问题。


阅读 100

收藏
2022-07-17

共1个答案

小编典典

将正确的路径添加到 PATH 变量后,问题就解决了。

以下是找到正确路径的步骤。

1. Enter: npm install -g react-native-cli
output: /usr/local/Cellar/node/6.1.0/libexec/npm/bin/react-native ->/usr/local/Cellar/node/6.1.0/libexec/npm/lib/node_modules/react-native-cli/index.js/usr/local/Cellar/node/6.1.0/libexec/npm/lib
2022-07-17