macOS High Sierra的“ zsh:命令未找到:create-react-app”

时间:2018-09-30 15:21:55

标签: npm path create-react-app oh-my-zsh zshrc

我在ohmyzsh终端中运行了npm install -g create-react-app。该软件包已成功安装。

当我使用命令create-react-app react-app时,收到错误消息zsh: command not found: create

我知道此错误与ohmyzsh有关,更具体地说与命令的PATH有关,但我不确定该路径写什么。

我当前的PATH(.zshrc)如下:

# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:
export PATH="/usr/local/bin:$PATH"
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"

# Path to your oh-my-zsh installation.
export ZSH="/Users/steven/.oh-my-zsh"

我尝试添加的路径包括:

:/usr/local/bin :usr/local/bin/npm :/usr/local/bin/create-react-app

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

我通过在export PATH="$PATH:$HOME/.rvm/bin"文件中添加.zshrc来解决了这个问题。

我现在可以使用create-react-app <app-name>命令来创建React应用程序!