0
I’m trying to use the command "code." zsh terminal to open the folder in vscode, but when I run the command it returns me the following error message:
zsh: no such file or directory: /Applications/Visual Studio Code.app/Contents/Resources/app/bin/code
I saw in other questions this path that it indicates above, however I did not find it in my computer, I tried to add to the PATH and also did not work.
- How can I make the command
code .
work on my terminal?
It does not solve the problem. The
which
search in PATH and not in filesystem. If the system does not find in PATH thewhich
also will not locate.– Bacco