首页 > 其他分享 >如何从ubantu系统中卸载swig2.0?

如何从ubantu系统中卸载swig2.0?

时间:2022-12-11 15:45:08浏览次数:42  
标签:ubantu swig2.0 get sudo apt command remove 卸载

 

To remove the swig2.0 following command is used:

sudo apt-get remove  swig2.0

Following command is used to remove the swig2.0 package along with its dependencies:

sudo apt-get remove --auto-remove swig2.0

This will remove swig2.0 and all its dependent packages which is no longer needed in the system.

Completely removing swig2.0 with all configuration files:

Following command should be used with care as it deletes all the configuration files and data:

sudo apt-get purge swig2.0

or you can use following command also:

sudo apt-get purge --auto-remove swig2.0

标签:ubantu,swig2.0,get,sudo,apt,command,remove,卸载
From: https://www.cnblogs.com/qianyuesheng/p/16973750.html

相关文章

  • MySQL卸载的方法
    1、卸载电脑上的MySQL2、接着在电脑上搜索regedit.exe进入注册页面,按路径搜索HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\Application\Mysql,删除Mysql注......
  • 关于python opencv报错问题,找不到cv2模块啊,直接卸载重装,马上解决问题,网上一大堆配置
    卸载包命令pipuninstallopencv-python卸载包命令pipuninstallopencv-contrib-python主要就是这两个包;然后再安装pipinstallopencv-pythonpipinstallopencv-c......
  • VS2022中ArcGIS Pro SDK for .NET安装和卸载指南
    VS2022中ArcGISProSDKfor.NET安装和卸载指南安裝ArcGISProSDKfor.NET升级ArcGISProSDKfor.NET卸载ArcGISProSDKfor.NET使用专用图库分发适用于.NET的......
  • node卸载和npm卸载
    用npmuninstall-g npm卸载不了删除nodemodules文件提示已在其他文件夹中打开或已经运行解决办法:在控制面板把nodejs卸载掉,然后再删除nodemodules文件夹这样就ok了......
  • 如何卸载干净MySQL
    (小白所有博客都是用来记录自己的经历和学习过程所参考内容,为了方便自己以后复习,)超级完整的教程:https://blog.csdn.net/weixin_48839391/article/details/127875857棒,有用......
  • 卸载 make install 编译安装的软件
     xargsrm<install_manifest.txtmakeinstall之后,build目录下会有一个install_mainfest.txt的文件,记录了安装的所有内容及路径,执行xargsrm<install_manifest.t......
  • Winform程序在VS中打包成安装程序(带卸载)
    场景在VS中进行Winform开发时,可以直接在项目上右击选择生成  则会在项目的bin目录下直接生成exe等文件,此时将这个文件夹直接整个复制到别的地方就可以运行。 ......
  • tomcat_安装&卸载&启动和tomcat_启动问题分析
    tomcat_安装&卸载&启动:Tomcat:web服务器软件1.下载:https://tomcat.apache.org/2.安装:解压压缩包即可注意:安装目录建议不要有中文和空格3.卸载:删除目录就行......
  • tomcat_安装&卸载&启动与tomcat_启动问题分析
    tomcat_安装&卸载&启动tomcat:web服务器软件1.下载:https://tomcat.apache.org/      ......
  • centos8 手动卸载mysql
    首先得停止mysql的服务,然后查找mysql文件用find/-namemysql   rm-rf删掉所有的mysql文件删掉后删除配置文件rm-rf/etc/my.cofrm-rf/etc/init.d/mysql......