Linux

FIX : zsh : command not found : code On Mac / How To Fix Code Command Not Found In MacOS (2024)



🔧 **Resolving “zsh: command not found: code” Error on Mac / macOS** 🍏🚀

If you’re encountering the “zsh: command not found: code” error when trying to launch Visual Studio Code (VSCode) in your zsh shell on Mac or macOS, here’s a step-by-step guide to fix the issue:

1. **Check VSCode Installation:**
– Verify that Visual Studio Code is installed on your Mac. You can download it from the official website if needed.

2. **Update Shell Profile:**
– Open your zsh profile file using a text editor. Common files are `.zshrc` or `.zprofile`.
“`bash
nano ~/.zshrc
“`
– Look for a line similar to the following and add it if it’s not there:
“`bash
export PATH=”$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin”
“`

3. **Reload the Zsh Configuration:**
– Save and close the file.
– Reload your zsh configuration:
“`bash
source ~/.zshrc
“`

4. **Check ‘code’ Command:**
– Verify if the ‘code’ command is now recognized:
“`bash
code –version
“`

5. **Alternative Method – Symbolic Link:**
– Create a symbolic link to the ‘code’ binary:
“`bash
sudo ln -s /Applications/Visual Studio Code.app/Contents/Resources/app/bin/code /usr/local/bin/code
“`

6. **Restart Zsh or Terminal:**
– Close and reopen your zsh or terminal session.

Now, the “zsh: command not found: code” error should be resolved, and you should be able to launch Visual Studio Code from the zsh shell without any issues.

🔗 **Useful Resources:**
– [Visual Studio Code Official Website](

🖥️ **Hashtags:**
#VSCode #zshError #MacOS #TechFix #ProgrammingOnMac #DeveloperHelp #TechSupport #CodingProblems #VisualStudioCode #ZshShell #ProgrammingTips

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button