fix: update videoid and multiple choice question for the how to install vscode lecture (#57587)

This commit is contained in:
Kristofer Koishigawa 2024-12-18 20:37:28 +09:00 committed by GitHub
parent 8bf15a542f
commit 5680217e1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
id: 672d45583fd75a504136fbbb
title: How to Install Visual Studio Code onto Your Computer
challengeType: 11
videoId: hWa_PgsNSw0
videoId: JuxdN8OWllk
dashedName: how-to-install-visual-studio-code-onto-your-computer
---
@ -86,15 +86,15 @@ The lecture describes several ways to install VSCode on Mac, but one common meth
## --text--
On Linux, what command would you use to install VSCode using the Arch Linux package manager?
What command would you use to install VSCode using Homebrew?
## --answers--
`sudo apt-get install code`
`sudo brew -i code`
### --feedback--
The lecture provides a specific command for Arch Linux users.
The lecture provides a specific command for Homebrew.
---
@ -102,19 +102,19 @@ The lecture provides a specific command for Arch Linux users.
### --feedback--
The lecture provides a specific command for Arch Linux users.
The lecture provides a specific command for Homebrew.
---
`sudo pacman -S code`
`brew install --cask visual-studio-code`
---
`sudo dnf install code`
`homebrew install vscode`
### --feedback--
The lecture provides a specific command for Arch Linux users.
The lecture provides a specific command for Homebrew.
## --video-solution--