简体   繁体   English

如何在Ubuntu中卸载库(通过编译安装)?

[英]How to uninstall libraries (installed through compile) in Ubuntu?

I tried installing libtiff 4.0.3 through using the commands: 我尝试通过使用以下命令安装libtiff 4.0.3:

./configure
make
make install

It installed fine. 它安装很好。 However, I recently found out that I got the versions wrong and so I need to install a new one with a different version. 但是,我最近发现我弄错了版本,因此我需要安装一个具有不同版本的新版本。 I'd like to how know to remove libtiff from my Ubuntu setup. 我想知道如何从Ubuntu设置中删除libtiff。 Would it be the same as sudo apt-get remove [x] ? sudo apt-get remove [x]吗? And how do I know what to put on x if I didn't install it through sudo apt-get install [x] command? 如果我没有通过sudo apt-get install [x]命令sudo apt-get install [x] x ,我怎么知道该放在x呢? Would appreciate some help. 希望能有所帮助。 Thanks. 谢谢。 :) :)

You can't use apt-get to remove something that wasn't installed as a package. 您不能使用apt-get删除未作为软件包安装的内容。 Try running make uninstall. 尝试运行make卸载。 Blender 搅拌机

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我从源代码安装了 GCC 5.2,但我不知道如何在 Ubuntu 15.04 上卸载它 - I installed GCC 5.2 from source and I don't know how to uninstall it on Ubuntu 15.04 如何在 Ubuntu 安装过程中卸载 Eclipse IDE 和已安装的软件包? - How to Uninstall Eclipse IDE and the packages that were installed, during installation process in Ubuntu? Linux / gcc-如何编译程序以使用安装在主目录中的库? - Linux/gcc - How should I compile my programs to use libraries installed in my home directory? 如何卸载从源安装的gcc? - How to uninstall gcc installed from source? 如何在Ubuntu上编译curlpp? - How to compile curlpp on ubuntu? 如何在ubuntu上编译doom? - How to compile doom on ubuntu? 如何使用dpkg卸载最近安装的应用程序(最近安装)? - How can I uninstall the last installed application (recently installed) with dpkg? 如何为Linux内核编译库? - how to compile libraries for the Linux kernel? 如果我使用更新版本的gcc编译二进制文件,如何在客户端linux机器上找到需要安装的库? - How do I find what libraries need to be installed on a client linux machine if I compile a binary with a newer version of gcc? 尝试在Ubuntu上卸载并全新安装Ruby:是否仍安装Ruby? - Trying to uninstall and fresh install Ruby on Ubuntu: do I still have Ruby installed?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM