如何卸载Thrift

Var*_*pta 6 thrift

我正在使用Ubuntu 10.04 LTS机器,我在其上克隆了Thrift的git存储库,并从源代码本地构建它.但最新版本的API有一些变化,导致应用程序的构建过程失败.

由于Thrift的最新版本仅在我的机器上进行,我们的团队决定将我的系统恢复为较旧且兼容的版本.

但我发现很难卸载现有的(最新的)版本.我该怎么办呢?

ale*_*zik 10

如果您还没有删除安装了thrift的源代码树,./configure && make && sudo make install那么只cd需要它

sudo make uninstall
Run Code Online (Sandbox Code Playgroud)

除此以外:

git clone <repo>
git checkout <revision you installed>
./configure # if you supplied some additional options to configure while building thrift, add them here too.
sudo make uninstall
Run Code Online (Sandbox Code Playgroud)