我正在尝试使用terminal命令安装react:
npm install -g create-react-app
但它似乎没有工作,我得到以下输出:
有谁知道这里可能出现什么问题?
答案 0 :(得分:2)
正如我在屏幕截图中看到的,您只需要以管理员sudo npm install -g create-react-app
使用此命令。
答案 1 :(得分:0)
以防您因此错误而在这里跌倒:
-bash:create-react-app:找不到命令
然后您需要执行以下操作:
npx create-react-app yourApp
基本上,您需要在create-react-app
之前加上npx
。