我有节点并nodejs
安装在我的 Ubuntu 18.04 机器上。我想删除它和/或重新安装它以获得最新nodejs
版本。
- 当我运行
node -v
它给我:v12.18.4
- 当我运行
nodejs -v
它给我:v8.10.0
还
which node
返回/usr/local/bin/node
which nodejs
返回/usr/bin/nodejs
我试图卸载它们
sudo apt-get --purge remove node
sudo apt-get --purge remove nodejs
但sudo apt-get --purge remove node
给了我
E: Unable to locate package node
并sudo apt-get --purge remove nodejs
返回
npm : Depends: nodejs but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
有什么解决办法吗?
如果您通过 tar 文件或类似文件安装它们,它们可能位于 $PATH 或 /usr/share 中,但这取决于您安装软件包的方式。
如果 NodeJS 不是通过 APT 安装的,APT 将找不到它。我建议也许搜索 nodejs 和 node 文件
find / -name "node*"
并手动删除它们,或者如果安装程序带有卸载程序,请改用它。