1
0

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.

zsh: command not found: vue

Last updated at Posted at 2022-03-10

背景

zsh: command not found: vue にて vue コマンドが使用できない際の対処法の備忘録です。

内容

vue-cli をインストールするためのコマンドを実施

npm install -g @vue/cli

vue-cliのバージョンを確認するためのコマンドを実施

vue -V
zsh: command not found: vue

vue コマンドを使用するためにパスを通す必要がある
※[username]は自分の登録されている名前を入力

export PATH=$PATH:/Users/[username]/.npm-global/bin

設定を反映させるためのコマンドを実施

source .zshrc 

再度、vue-cliのバージョンを確認するためのコマンドを実施

vue -V
@vue/cli 5.0.1

vue コマンドの使用ができました。

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?