programming:visual_studio:install_visual_studio
Differences
This shows you the differences between two versions of the page.
programming:visual_studio:install_visual_studio [2023/06/25 17:35] – created peter | programming:visual_studio:install_visual_studio [2023/06/25 17:59] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Programming - Visual Studio - Install Visual Studio ====== | ====== Programming - Visual Studio - Install Visual Studio ====== | ||
+ | |||
+ | ===== Install using snap ===== | ||
<code bash> | <code bash> | ||
sudo snap install --classic code # or code-insiders | sudo snap install --classic code # or code-insiders | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Install using apt ===== | ||
+ | |||
+ | ==== Update the system repository ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt update | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Install Package Dependencies ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install software-properties-common apt-transport-https wget -y | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Add GPG Key ==== | ||
+ | |||
+ | Import the GPG key provided by Microsoft to verify the package integrity. | ||
+ | |||
+ | <code bash> | ||
+ | wget -q https:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Add Repository ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo add-apt-repository "deb [arch=amd64] https:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Install vscode ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install code | ||
+ | </ | ||
+ | |||
+ | |||
---- | ---- |
programming/visual_studio/install_visual_studio.1687714536.txt.gz · Last modified: 2023/06/25 17:35 by peter