mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 03:41:36 +00:00
18 lines
620 B
Markdown
18 lines
620 B
Markdown
# Create a Next.js App - Installation Error
|
||
|
||
> Linked from https://nextjs.org/learn/basics/create-nextjs-app/setup
|
||
|
||
If you see an installation error for the following installation command:
|
||
|
||
```bash
|
||
npx create-next-app nextjs-blog --example "https://github.com/vercel/next-learn/tree/master/basics/learn-starter"
|
||
```
|
||
|
||
Try removing everything after `nextjs-blog`:
|
||
|
||
```bash
|
||
npx create-next-app nextjs-blog
|
||
```
|
||
|
||
If that doesn’t work either, please let us know in a [GitHub Issue](https://github.com/vercel/next-learn/issues) with the error text, your OS, and Node.js version (make sure your Node.js version 18 or higher).
|