Nuxt.jsをインストールしブラウザ上に表示させたい
Nuxt.jsをインストールし質問箇所を間違えたので
再度、インストールから始めるとエラーが起こりました。
##インストールの手順
1.インストールする
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
2.ターミナルを再起動
3.Nodeの12.20をインストールする。
nvm install 12.20
4. nodeがインストールされているか確認する
node -v
5.yarn
jsx
1npm install -g yarn
###6.ディレクトリを移動する
cd
###7.フォルダを作る
mkdir git
cd git
###8.nuxtをインストールする
yarn create nuxt-app nuxt-sample
質問がいくつかあり回答を間違えたのでターミナルを再起動し
「command not found」が繰り返され先に進めず困っています。
発生している問題・エラーメッセージ
1を再度行った場合、下記のような状態になります。
エラーメッセージ % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 13527 100 13527 0 0 49368 0 --:--:-- --:--:-- --:--:-- 49189 => nvm is already installed in /Users/tadokorodaiki/.nvm, trying to update using git => => Compressing and cleaning up git repository => Profile not found. Tried ~/.bashrc, ~/.bash_profile, ~/.zshrc, and ~/.profile. => Create one of them and run this script again OR => Append the following lines to the correct file yourself: export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm => You currently have modules installed globally with `npm`. These will no => longer be linked to the active version of Node when you install a new node => with `nvm`; and they may (depending on how you construct your `$PATH`) => override the binaries of modules installed with `nvm`: /Users/tadokorodaiki/.nvm/versions/node/v12.20.2/lib └── yarn@1.22.10 => If you wish to uninstall them at a later point (or re-install them under your => `nvm` Nodes), you can remove them from the system Node as follows: $ nvm use system $ npm uninstall -g a_module => Close and reopen your terminal to start using nvm or run the following to use it now: export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
試したこと
作成したフォルダを削除し1から試しましたが上記と同様のエラーになります。
あなたの回答
tips
プレビュー