Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created June 8, 2018 18:20
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarek-przygodzki/671e9922c8906fbb78194355acd2f449 to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/671e9922c8906fbb78194355acd2f449 to your computer and use it in GitHub Desktop.
Add VS Code to PATH in macOS

To add code to PATH in macOS (in order to run code from the command line) we may to open up VS Code and open the 'Command Palette' with Shift+Command+P on Mac, or Shift+Control+P on Linux. In it, enter shell command and look for the Shell Command: Install 'code' command in PATH option. After doing this any new shell we open should be able to run code.

@aisnote
Copy link

aisnote commented Dec 22, 2022

but how about there is no admin privilege?

@mr-kollie
Copy link

Well that was of no help at all.

@dorisentomari
Copy link

👍

@evilgeniuscreative
Copy link

Doesn't work. Period.

@beaudjango
Copy link

😎

@Alacrity01
Copy link

Alacrity01 commented Feb 12, 2024

I think this is what he meant to say:

  • In VS Code, open the command palette using Command + Shift + P (Mac) or Command + Control + P (Linux).
  • In the VS Code command palette, search/select the option that reads >Shell Command: Install 'code' command in Path
  • Click it (it should say something like "successfully added code to path").

Now try opening a folder in code in your terminal using code . (if you want to open the current directory in VS Code).

@Nelwhix
Copy link

Nelwhix commented Mar 16, 2024

If you get this error from vscode EACCES: permission denied, unlink '/usr/local/bin/code'

Run in a new shell

   sudo rm /usr/local/bin/code

Then run the Shell command from vscode again

@dhan2325
Copy link

If you get this error from vscode EACCES: permission denied, unlink '/usr/local/bin/code'

Run in a new shell

   sudo rm /usr/local/bin/code

Then run the Shell command from vscode again

I just found this issue on my Mac, this fix worked for me. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment