本文介绍了删除作曲家的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在尝试安装cakePhp时安装了composer,但是安装未成功,我想卸载composer。
我找不到任何方法。
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.
对于安装,我使用了命令 curl -s https:// getcomposer .org / installer | php
For the installation I used the command curl -s https://getcomposer.org/installer | php
我在linux中工作
推荐答案
在安装过程中,您收到一条消息
Composer已成功安装到:...
这表明Composer的安装位置。但是您也可以在系统上搜索文件 composer.phar
。
During the installation you got a messageComposer successfully installed to: ...
this indicates where Composer was installed. But you might also search for the file composer.phar
on your system.
然后简单地:
- 删除文件
composer.phar
。 - 删除缓存文件夹:
- Linux:
/ home /< user> /。composer
- Windows:
C:\Users\< username> \AppData\Roaming\Composer
- Linux:
- Delete the file
composer.phar
. - Delete the Cache Folder:
- Linux:
/home/<user>/.composer
- Windows:
C:\Users\<username>\AppData\Roaming\Composer
- Linux:
就是这样。
这篇关于删除作曲家的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!