Remove composer

前端 未结 5 919
囚心锁ツ
囚心锁ツ 2020-12-23 13:38

I installed composer while trying to install cakePhp, but the installation was not successful and I want to uninstall composer. I am not finding any way to do this.

5条回答
  •  轮回少年
    2020-12-23 13:51

    Uninstall composer

    To remove just composer package itself from Ubuntu 16.04 (Xenial Xerus) execute on terminal:

    sudo apt-get remove composer
    

    Uninstall composer and it's dependent packages

    To remove the composer package and any other dependant package which are no longer needed from Ubuntu Xenial.

    sudo apt-get remove --auto-remove composer
    

    Purging composer

    If you also want to delete configuration and/or data files of composer from Ubuntu Xenial then this will work:

    sudo apt-get purge composer
    

    To delete configuration and/or data files of composer and it's dependencies from Ubuntu Xenial then execute:

    sudo apt-get purge --auto-remove composer
    

    https://www.howtoinstall.co/en/ubuntu/xenial/composer?action=remove

提交回复
热议问题