From c35dfebf7771ae97f54f95ca7f1fa01273d6ac52 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 25 Apr 2020 10:08:40 -0700 Subject: [PATCH] Add errors directory --- errors/install.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 errors/install.md diff --git a/errors/install.md b/errors/install.md new file mode 100644 index 0000000..6794810 --- /dev/null +++ b/errors/install.md @@ -0,0 +1,23 @@ +# 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/zeit/next-learn-starter/tree/master/learn-starter" +``` + +Try removing everything after `--example`: + +```bash +npm init next-app nextjs-blog +``` + +And hit return to choose the default template: + +``` +❯ Default starter app +``` + +If that doesn’t work either, please let us know on [GitHub Discussions](https://github.com/zeit/next.js/discussions) with your OS / 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). \ No newline at end of file