我正在使用Ubuntu 10.04 LTS机器,我在其上克隆了Thrift的git存储库,并从源代码本地构建它。但最新版本的API有一些变化,导致应用程序的构建过程失败。
由于Thrift的最新版本仅在我的机器上运行,我们的团队已决定将我的系统恢复为较旧且兼容的版本。
但我发现很难卸载现有(最新)版本。我该怎么办呢?
答案 0 :(得分:10)
如果您尚未删除./configure && make && sudo make install
之前安装了thrift的源树,那么只需cd
和
sudo make uninstall
否则:
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
答案 1 :(得分:2)
要卸载Thrift,请导航至tmp
$ cd /tmp
在这里你会找到你要删除的Thrift。
$ cd thrift-0.6.1
$ sudo make uninstall
$ cd ..
$ rm -rf thrift-0.6.1
这将卸载Thrift。 要下载其他版本,您可以使用
$ curl http://apache.deathculture.net//thrift/0.6.1/thrift-0.6.1.tar.gz | tar zx