Heim > Fragen und Antworten > Hauptteil
Wenn ich mit diesem Befehl ein neues Nuxt 3-Projekt erstelle:
npx nuxi init nuxt-app
Es wird dieser Fehler ausgegeben:
ERROR (node:1752) ExperimentalWarning: The Fetch API is an experimental feature. This feature could change at any time 09:53:25 (Use `node --trace-warnings ...` to show where the warning was created) ERROR Failed to download template from registry: fetch failed 09:53:25 at /C:/Users/myname/AppData/Local/npm-cache/_npx/a95e0f536cf9a537/node_modules/nuxi/dist/chunks/init.mjs:13269:11 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async downloadTemplate (/C:/Users/myname/AppData/Local/npm-cache/_npx/a95e0f536cf9a537/node_modules/nuxi/dist/chunks/init.mjs:13268:20) at async Object.invoke (/C:/Users/myname/AppData/Local/npm-cache/_npx/a95e0f536cf9a537/node_modules/nuxi/dist/chunks/init.mjs:13336:15) at async _main (/C:/Users/myname/AppData/Local/npm-cache/_npx/a95e0f536cf9a537/node_modules/nuxi/dist/cli.mjs:50:20)
Mein Umfeld:
Zuerst vermutete ich, dass das an meinem Netzwerk lag. Aber ich erhalte die Fehlermeldung nicht, wenn ich versuche, andere npm-Pakete zu installieren.
P粉2873452512023-11-02 10:12:05
我也遇到了同样的错误(Windows 10)。我的很简单。
ERROR Error: Failed to download template from registry: fetch failed
是的,这与网络或IP被阻止有关。不过我还是设法解决了。这就是我所做的。
首先进入C:\Windows\System32\drivers\etc
在此文件夹中查找“hosts”文件。用记事本以管理员身份打开。现在在文件末尾(以及其他 IP 地址)添加此行。
// Some other ip address 185.199.108.133 raw.githubusercontent.com
这应该可以解决问题。
P粉6330757252023-11-02 09:23:29
我在此处找到了原因。
确实是网络问题。它无法从命令行访问 raw.githubusercontent.com
,因为它找不到相应的 IP 地址。
将 raw.githubusercontent.com
的正确 IP 地址添加到 Windows 主机文件后,问题已修复