Home > Development Tools > VSCode > body text

How to uninstall vscode on ubuntu

Release: 2020-03-28 15:13:40
Original
16436 people have browsed it

How to uninstall vscode on ubuntu

The package name of vscode on Ubuntu is code . There are many ways to uninstall vscode, just choose one of them. The details are as follows:

(1) If installed through apt-get, you will be prompted for confirmation when deleting:

$  sudo apt-get remove code    # 只是卸载,保留配置
Copy after login

or

$  sudo apt-get --purge remove code   # 彻底清除,包括配置
Copy after login

or

$  sudo apt-get purge  code           # 也是彻底清除
Copy after login

( 2) If installed through dpkg, there will be no confirmation prompt when deleting:

$  sudo dpkg -r code          # 只是卸载,保留配置
Copy after login

or

$  sudo dpkg --remove  code           # 只是卸载,保留配置
Copy after login

or

$  sudo dpkg -r code                  # 彻底清除,包括配置
Copy after login

or

$  sudo dpkg --purge  code            # 彻底清除,包括配置
Copy after login

Recommended learning: vscode tutorial

The above is the detailed content of How to uninstall vscode on ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template