Home > Development Tools > VSCode > body text

How to install vscode in linux system

王林
Release: 2020-01-09 15:02:41
Original
6354 people have browsed it

How to install vscode in linux system

1. Download the compressed package from the official website.

64 bits are as follows:

wget https://az764295.vo.msecnd.net/stable/7ba55c5860b152d999dda59393ca3ebeb1b5c85f/code-stable-code_1.7.2-1479766213_amd64.tar.gz
Copy after login

2. Decompress. If the file name is incorrect, it may not be decompressed (extension Name: tar.gz)

tar jxcv code-stable-code_1.7.2-1479766213_amd64.tar.gz
Copy after login

3. Then move to the /usr/local/ directory

mv VSCode-linux-x64 /usr/local/
Copy after login

4. You may also need to give executable permissions, and then you can run it

chmod +x /usr/local/VSCode-linux-x64/code
Copy after login

5. Copy a VScode icon file to the /usr/share/icons/ directory (will be useful later)

cp /usr/local/VSCode-linux-x64/resources/app/resources/linux/code.png /usr/share/icons/
Copy after login

6. Create a launcher in the /usr/share/applications/ directory, also You can copy it to the desktop directory

Use the following command directly at the break:

vim /usr/share/applications/VSCode.desktop
Copy after login

Then enter the following text:

[Desktop Entry]
Name=Visual Studio Code
Comment=Multi-platform code editor for Linux
Exec=/usr/local/VSCode-linux-x64/code
Icon=/usr/share/icons/code.png
Type=Application
StartupNotify=true
Categories=TextEditor;Development;Utility;
MimeType=text/plain;
Copy after login

Exit after saving, and then you can copy it to the desktop:

cp /usr/share/applications/VSCode.desktop ~/桌面/
Copy after login

After that, you will find that the desktop and application menus have VSCode shortcuts.

7. Open VSCode and load the plug-in: cpptools | vscode-icons

Other plug-ins can be installed as needed.

How to install vscode in linux system

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of How to install vscode in linux system. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!