Installing Visual Studio Code on macOS

Visual Studio Code is available for macOS through a downloadable disk image. VS Code supports Intel-based Macs and Macs with Apple silicon.

Install VS Code on macOS

  1. Download Visual Studio Code for macOS.

  2. Open the downloaded .dmg file.

  3. Drag Visual Studio Code.app to the Applications folder.

  4. Open VS Code from the Applications folder by double-clicking the icon.

  5. To keep VS Code in the Dock, Control-click the icon in the Dock, then select Options > Keep in Dock.

Note

The Download Visual Studio Code page also lists Universal, Intel chip, and Apple silicon builds.

Launch VS Code from the command line

To run VS Code from the terminal by typing code, add VS Code to the $PATH environment variable.

Configure PATH with VS Code

  1. Launch VS Code.

  2. Open the Command Palette (Cmd+Shift+P), type shell command, and run the Shell Command: Install 'code' command in PATH command.

    Screenshot showing the Shell Command command in the Command Palette on macOS.

  3. Restart the terminal for the new $PATH value to take effect.

    Run code . in any folder to start editing files in that folder.

Note

If an old code alias remains in .bash_profile or an equivalent shell profile from an earlier VS Code version, remove it and run the Shell Command: Install 'code' command in PATH command again.

Manually configure PATH

To manually add VS Code to your path, run the command for your shell.

Zsh:

cat << EOF >> ~/.zprofile
# Add Visual Studio Code (code)
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF

Bash:

cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF
Note

The leading backslash in \$PATH prevents $PATH from expanding during concatenation. Remove the backslash when running the export command directly in a terminal.

Start a new terminal to pick up your changes. Run code . in any folder to start editing files in that folder.

Updates

VS Code ships weekly releases and supports auto-update when a new release is available. When VS Code prompts you for an update, accept the prompt to install the new version.

Note

Disable auto-update if you prefer to update VS Code on your own schedule.

Touch Bar support

VS Code adds these Touch Bar actions on supported Macs:

  • Editor history navigation.
  • The Debug toolbar for controlling the debugger.

Screenshot showing VS Code Touch Bar actions on macOS.

After installation

After you install VS Code, finish setup for your development workflow:

Common questions

Why does Visual Studio Code ask for access to my calendar?

On macOS Mojave, dialogs might say "Visual Studio Code would like to access your calendar, contacts, or photos." These dialogs come from macOS privacy protections and are not specific to VS Code. Select Don't Allow because VS Code does not need access to those folders.

VS Code fails to update

If VS Code doesn't update after restart, macOS might have set it under quarantine. Follow the steps in issue #7426 to resolve the issue.

Does VS Code run on Apple silicon machines?

Yes. VS Code supports macOS Arm64 builds that run on Macs with Apple silicon. Install the Universal build, which includes both Intel and Apple silicon builds, or install one of the platform-specific builds.