- Learn WebAssembly
- Mike Rourke
- 116字
- 2021-08-13 15:39:00
Installing Visual Studio Code on Ubuntu
The process for installing VS Code on Ubuntu has a few extra steps, but is still relatively simple. First, download the .deb file from VS Code's download page (https://code.visualstudio.com/Download). Once the download completes, run the following commands to complete the installation:
# Change directories to the Downloads folder
cd ~/Downloads
# Replace <file> with the name of the downloaded file
sudo dpkg -i <file>.deb
# Complete installation
sudo apt-get install -f
If you get a missing dependency error, you can fix it by running the following command before sudo dpkg:
sudo apt-get install libgconf-2-4
sudo apt --fix-broken install
You should now be able to open VS Code from the Launcher.
推薦閱讀
- SPSS數(shù)據(jù)挖掘與案例分析應(yīng)用實踐
- Java多線程編程實戰(zhàn)指南:設(shè)計模式篇(第2版)
- Visual Basic編程:從基礎(chǔ)到實踐(第2版)
- Mastering Concurrency in Go
- Visual Basic學(xué)習(xí)手冊
- Highcharts Cookbook
- Mastering Data Mining with Python:Find patterns hidden in your data
- Odoo 10 Implementation Cookbook
- R數(shù)據(jù)科學(xué)實戰(zhàn):工具詳解與案例分析
- Building Serverless Web Applications
- Raspberry Pi Robotic Blueprints
- Laravel Application Development Blueprints
- C++程序設(shè)計教程
- Web前端開發(fā)技術(shù):HTML、CSS、JavaScript
- SSH框架企業(yè)級應(yīng)用實戰(zhàn)