找不到create-react-app my-app ...命令

问题描述 投票:0回答:4

我跑了npm install -g create-react-app,一切似乎安装正确。

然后我运行create-react-app my-app并作为回报获得-bash: create-react-app: command not found

然后我尝试改变我的./bash_profile $PATH,但我仍然得到错误。

我所有包裹的位置都是Macintosh HD/Users/my_name/npm/bin

任何帮助将不胜感激。

谢谢!

MSO 10.13 Beta

node.js bash macos reactjs npm
4个回答
2
投票
  1. 打开当前的bash文件:在Terminal中,键入:open~ / .bash_profile这将在文本编辑器中打开bash文件 但是如果你没有bash文件,请用它创建一个新文件 触摸〜/ .bash_profile
  2. 在文件中添加: export PATH = $ PATH:/Users/my_name/.npm-packages/bin *一定要将my_name更改为您的用户名
  3. 重启终端
  4. 在终端,运行 create-react-app my-app

1
投票

试试这个 :

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

export PATH=$PATH:/Users/my_name/.npm-packages/bin/

0
投票

确保您已为文件路径/ usr / local / lib / node_modules提供了足够的权限

然后试试这个:npm install -g create-react-app create-react-app my-app


0
投票

尝试运行(使用节点模块下的。\ bin路径)。 node_modules.bin \ create-react-app我的应用程序。创建反应应用程序的原因不在于PATH。

© www.soinside.com 2019 - 2024. All rights reserved.