Files
next-learn/errors/install.md
Luis Alvarez D 347a04b714 Update install.md (#28)
`create-next-app` no longer has a select step.
2020-11-26 18:07:36 -06:00

18 lines
708 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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
npm init next-app nextjs-blog --example "https://github.com/vercel/next-learn-starter/tree/master/learn-starter"
```
Try removing everything after `--example`:
```bash
npm init next-app nextjs-blog
```
If that doesnt work either, please let us know on [GitHub Discussions](https://github.com/vercel/next.js/discussions) with the error text, your OS, and Node.js version (make sure your Node.js version is at least 10.13). You can also reach out to [@chibicode on Twitter](https://twitter.com/chibicode).