解决npm无法卸载create-react-app

要完全卸载它,请尝试运行

sudo npm uninstall -g create-react-app

有时此命令可能无法完全删除包。如果是这样,只需检查其所在的目录

which create-react-app

它会给你一些目录,比如/usr/local/bin/create-react-app。只需手动删除它

rm -rf /usr/local/bin/create-react-app

现在您可以通过以下方式安装 create-react-app

npm install -g create-react-app

通过版本查看命令查看是否安装成功

create-react-app -V

但是,不建议从 v3.3.0 全局安装它。所以只需使用

npx create-react-app 

你可能感兴趣的:(npm)