欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu卸载gnuplot

程序员文章站 2022-03-29 18:40:55
...

1、查看是否已安装gnuplot软件

dpkg --list | grep gnuplot

dpkg --list | grep gnuplot
ii  gnuplot                              4.2.6-1                                         A command-line driven interactive plotting p
ii  gnuplot-nox                          4.2.6-1                                         A command-line driven interactive plotting p
ii  gnuplot-x11                          4.2.6-1                                         A command-line driven interactive plotting p

2、卸载软件

apt-get remove gnuplot                  //只将软件删除

3、如果想将软件和配置一并删除,则使用

apt-get remove --purge gnuplot     //将软件及其配置文件一并删除

 

 

参考链接:

https://blog.csdn.net/luckydog612/article/details/80877179