ubuntu16.04node和npm卸载干净

前端之家收集整理的这篇文章主要介绍了ubuntu16.04node和npm卸载干净前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如下命令便可以实现该目的:

    #apt-get 卸载
    sudo apt-get remove --purge npm
    sudo apt-purge nodejs
    sudo apt-get remove --purge nodejs-legacy
    sudo apt- autoremove

    #手动删除 npm 相关目录
    rm -r /usr/local/bin/npm
    rm -r /usr/local/lib/node-moudels
    find / -name npm
    rm -r /tmp/npm* 

 

猜你在找的Linux相关文章