我在我的电脑上安装了nodejs和yarn(Linux Deepin)。 我还在全球范围内安装了create-react-app。但是,create-react-app命令未运行。我一直收到错误:bash:create-react-app:command not found。
我缺少一些配置吗?因为我已经看到了全局安装的create-react-app。
NodeJS - v6.3.1 纱线 - 1.6.0 操作系统版本Linux Deepin -15
答案 0 :(得分:2)
将纱线全局路径添加到路径变量中 以下内容将纱线全局路径附加到〜/ .bashrc
echo 'export PATH="$PATH:$(yarn global bin)"' >> ~/.bashrc
如果你正在使用像zsh这样的其他shell,请确保附加到zsh使用的正确文件
echo 'export PATH="$PATH:$(yarn global bin)"' >> ~/.zshrc
最后确保重新启动终端。
答案 1 :(得分:0)
你确定命令已经在你的路径中吗?如果您刚安装它,可能只需关闭并重新启动终端;)