2
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?

記事投稿キャンペーン 「2024年!初アウトプットをしよう」

【Next.js】プロジェクトを作成しようとした際に発生したエラーの解消法

Posted at

背景

新しいPCに買い替えたのでNext.jsの勉強をしようと思い、
プロジェクトを作成しようとしたが、エラー発生。

環境

  • Node.js:20.10.0

エラー内容

npx create-next-app@latestでプロジェクトを作成しようとした際に、
次のエラーが発生。

npm ERR! path ~パス~
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat ~パス~
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

原因

npxパッケージがインストールされていなかった。

解消法

以下のコマンドで、npxパッケージをインストールを実行。

npm i -g npx

次のコマンドでNext.jsのプロジェクトを作成できました。

npx create-next-app@latest
2
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
2
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?