安装nuxt3,按照nuxt官网,node版本需在18以上
- 执行 npx nuxi@latest init 'xxx'
- 终端控制台可能会报错: ERROR Error: Failed to download template from registry: Failed to download https://raw.githubusercontent.com/nuxt/starter/templates/templates/v3.json: TypeError: fetch failed
- 可在命令窗口输入:ping raw.githubusercontent.com 发现ping不通
- 可访问https://ipaddress.com/website/raw.githubusercontent.com网址,会获取到四个IPv4地址如下:185.199.108.133 185.199.109.133 185.199.110.133 185.199.111.133
- 此时可以去电脑hosts文件中配置一个IPv4地址,windows中hosts文件比较好找,在这里说下mac如何查找hosts文件
- 打开终端,输入:sudo vi /private/etc/hosts命令,然后输入开机密码,进入到编辑器,按键盘下健,进入到最后一行,输入o,即可进行编辑
- 编辑输入:185.199.108.133 raw.githubusercontent.com
- 按电脑esc,然后输入:wq 即可保存
- 电脑终端在输入npx nuxi@latest init 'xxx',即可安装环境成功,执行npm run dev