How do you completely remove Ionic and Cordova installation from mac?

前端 未结 9 595
庸人自扰
庸人自扰 2020-12-02 13:20

How can I remove Cordova and ionic installation from my Mac completely? I am running mac os Yosemite 10.10.2

相关标签:
9条回答
  • 2020-12-02 14:03

    These commands worked for me:

    npm uninstall -g cordova
    npm uninstall -g ionic
    
    0 讨论(0)
  • 2020-12-02 14:07

    You can use following command if you uninstall globally

    npm uninstall -g cordova ionic
    

    option g for global

    if you want to uninstall from he drive then you can use following command

    npm uninstall cordova ionic
    
    0 讨论(0)
  • 2020-12-02 14:09

    1) first remove cordova cmd

    npm uninstall -g cordova

    2) After that remove ionic

    npm uninstall -g ionic

    0 讨论(0)
提交回复
热议问题