LoginSignup
2
2

More than 3 years have passed since last update.

Vue CLI 3のインストール(Mac)

Posted at

私の環境の問題かもしれないが、Vue CLI 3 をインストール後、Macの再起動が必要だった

Vue CLI の公式ガイド
https://cli.vuejs.org/guide/installation.html
日本語訳
http://www.fumiononaka.com/Business/html5/FN1807001.html

のとおりにグローバルに MacのターミナルでVue CLI をインストールし、

$ npm install -g @vue/cli

インストールされたバージョンを確認したが、”command not found”で確認できなかった

$ vue --version
-bash: vue: command not found

sudo を試しても同じ状態で変わらず

$ sudo npm install -g @vue/cli
Password:

PC(Mac)を再起動したところ、無事確認でき。 Vue コマンドを実行できるようになった

$ vue --version
3.7.0
2
2
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
2
2