Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
react-web
npx create-react- app .
npx
然后我跑 npx -v
npx -v
'未找到 npx 命令'。
我决定安装 npx。我跑 sudo npm i -g npx 这就是我得到的(参考图片)在此处输入图像描述。我该如何解决这个问题?
sudo npm i -g npx
尝试这个:
node
node -v
如果您的node版本低于 5.2,请考虑更新或安装npx为:
npm i -g npx
好的。我终于做到了。
这是我必须遵循的步骤。
/usr/local/bin/
sudo rm -i npx
希望它可以帮助有需要的人。