404 Not Found - GET http://npm.nrxt.com/create-vue

Introduction link - vue3 official website

  1. Problem:
    An error is reported when executing the command on the vue3 official website
npm init vue@latest

$ npm init vue@latest
npm ERR! code E404
npm ERR! 404 Not Found - GET http://npm.nrxt.com/create-vue
npm ERR! 404
npm ERR! 404 ‘create-vue@latest’ is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Administrator\AppData\Local\npm-cache_logs\2023-01-29T02_ 28_34_100Z-debug-0.log

insert image description here

  1. Solution
    (1) Download the latest node version
    https://nodejs.org/en/
    (2) npm set the domestic Taobao mirror source
npm config set registry https://registry.npm.taobao.org

(3)

npm init vue@latest

insert image description here

Guess you like

Origin blog.csdn.net/wangbaobao512/article/details/128791887