20
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【VSCode】Macでcodeコマンドを使用可能にする方法

Posted at

はじめに

M1Macでターミナル(zsh)からVSCodeを開くためにcode .を実行したところ以下のようになり、実行できませんでした。

ターミナル
$ code .
zsh: command not found: code

Macでcodeコマンドを使用可能にする

VSCodeの公式サイトにドキュメントがありましたので記載されている通りに進めます。

手順は以下の通りです。
まず、VSCodeを開き、shift + command + Pでコマンドパレットを開きます。
スクリーンショット 2022-02-21 23.12.53.png

コマンドパレットにshell commandと入力します。
すると、シェルコマンド:PATH内に'code'コマンドをインストールしますシェルコマンド:PATH内に'code'コマンドをアンインストールしますが表示されますので、シェルコマンド:PATH内に'code'コマンドをインストールしますを選択します。

パスワードを求められるので入力し、以下のようなメッセージが表示されれば設定完了です。

スクリーンショット 2022-02-21 23.19.21.png

再度ターミナルでcode .を実行します。

ターミナル
$ code .

エラーが出ることなく、VScodeでディレクトリを開くことができました。

20
4
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?