3
3

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 3 years have passed since last update.

Vue.jsでvue createしようとしたらエラー(loglevel error)になったー備忘録

Last updated at Posted at 2020-05-10

プログラミング初心者の備忘録です。

#Vue.jsでvue createしようとしたらエラー(loglevel error)になった
(スクショなくてすみません)

ERROR command failed: npm install --loglevel error

#キャッシュを消すと良いらしい

何故、エラーなのかはわかりませんが、キャッシュを消すと良いらしい、ということで実施。

npm cache clean --force

そうすると、

npm WARN using --force I sure hope you know what you are doing.

その後、もう一度vue createを実施。

vue create ***

そうすると、

? Target directory C:\Users\*** already exists. 

との表示が。
どうやら前回のvue createは途中でエラーになったものの一部ファイルは出来上がっていたよう。

どうすれば良いかわからなかったため、ひとまず上書き保存を選択。

Pick an action: Overwrite

その結果、無事にvue createが出来た模様。

.
.
.
�  Successfully created project notepad.
�  Get started with the following commands:

 $ cd notepad
 $ npm run serve

#最後に
リンク先を教えてくださった方、またリンク先で記事にしてくださった方、参考にさせていただきました。ありがとうございました。

#参考
https://deep-space.blue/web/1531

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?