- 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.
推薦閱讀
- Instant Testing with CasperJS
- JavaScript從入門到精通(微視頻精編版)
- Ceph Cookbook
- PaaS程序設計
- Ext JS 4 Web Application Development Cookbook
- Python編程:從入門到實踐
- 微服務架構深度解析:原理、實踐與進階
- Mastering Data Mining with Python:Find patterns hidden in your data
- 常用工具軟件立體化教程(微課版)
- 智能搜索和推薦系統:原理、算法與應用
- Rust游戲開發實戰
- Mastering OAuth 2.0
- 計算機系統解密:從理解計算機到編寫高效代碼
- Android應用程序設計
- Parallel Programming with Python