suda_code 发表于 2023-6-23 19:19:13

部署Vue时报错

各位好
最近在练习Vue,npm init vue@latest之后npm报错
求助
>npm init vue@latest
npm ERR! code ETIMEDOUT
npm ERR! syscall connect
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/create-vue failed, reason: connect ETIMEDOUT 2606:4700::6810:1723:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!   C:\Users\47005\AppData\Local\npm-cache\_logs\2023-06-23T11_08_49_680Z-debug-0.log

isdkz 发表于 2023-6-23 19:19:14

这个错误是由于网络连接问题导致的。根据错误信息,你可能是在代理后面或者网络设置有问题。

解决这个问题的方法有两种:

1. 检查代理设置:如果你在代理后面,请确保你的代理配置正确。你可以通过运行以下命令来检查代理配置是否正确:

      npm config get proxy
   npm config get https-proxy
   

   如果返回结果为空或者不正确,你可以使用以下命令来设置代理:

      npm config set proxy http://your-proxy-url:your-proxy-port
   npm config set https-proxy http://your-proxy-url:your-proxy-port
   

   将your-proxy-url和your-proxy-port替换为你的代理服务器的 URL 和端口。

2. 检查网络设置:如果你没有使用代理,那么可能是你的网络设置有问题。你可以尝试使用其他网络连接,或者联系网络管理员解决网络连接问题。

如果以上方法都没有解决问题,你可以尝试使用其他的 npm registry 镜像。可以通过运行以下命令来切换镜像:

npm config set registry https://registry.npm.taobao.org/


这将把 npm registry 切换到淘宝镜像,通常在国内访问速度更快。

希望这些解决方法能够帮助你解决问题!如果还有其他疑问,请随时提问。

suda_code 发表于 2023-6-23 19:22:13

isdkz 发表于 2023-6-23 19:19
这个错误是由于网络连接问题导致的。根据错误信息,你可能是在代理后面或者网络设置有问题。

解决这个问题 ...

我是在自己电脑弄的,这个代理地址要怎么弄?

isdkz 发表于 2023-6-23 19:27:22

suda_code 发表于 2023-6-23 19:22
我是在自己电脑弄的,这个代理地址要怎么弄?

这个代理是为了突破网络限制的,也就是 f墙,这个不太好说,

你可以用第二个方法,设置镜像地址

suda_code 发表于 2023-6-23 19:32:59

isdkz 发表于 2023-6-23 19:27
这个代理是为了突破网络限制的,也就是 f墙,这个不太好说,

你可以用第二个方法,设置镜像地址

D:\编程文件\网页文件\Vue>npm config set registry https://registry.npm.taobao.org/

D:\编程文件\网页文件\Vue>npm init vue@latest
npm ERR! code ETIMEDOUT
npm ERR! syscall connect
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmmirror.com/create-vue failed, reason: connect ETIMEDOUT 240e:b1:9801:409:3::3e1:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!   C:\Users\47005\AppData\Local\npm-cache\_logs\2023-06-23T11_27_50_085Z-debug-0.log

D:\编程文件\网页文件\Vue>ping https://registry.npm.taobao.org/
Ping 请求找不到主机 https://registry.npm.taobao.org/。请检查该名称,然后重试。

D:\编程文件\网页文件\Vue>ping registry.npm.taobao.org

正在 Ping registry.npm.taobao.org.w.cdngslb.com 具有 32 字节的数据:
来自 1.198.4.175 的回复: 字节=32 时间=34ms TTL=54
来自 1.198.4.175 的回复: 字节=32 时间=34ms TTL=54
来自 1.198.4.175 的回复: 字节=32 时间=33ms TTL=54
来自 1.198.4.175 的回复: 字节=32 时间=33ms TTL=54

isdkz 发表于 2023-6-23 19:41:14

suda_code 发表于 2023-6-23 19:32


奇怪,你的源没有设置成功

isdkz 发表于 2023-6-23 19:43:21

suda_code 发表于 2023-6-23 19:32


你执行 npm config get registry 看看

suda_code 发表于 2023-6-23 21:47:40

isdkz 发表于 2023-6-23 19:43
你执行 npm config get registry 看看

D:\编程文件\网页文件\Vue> npm config get registry
https://registry.npm.taobao.org/

D:\编程文件\网页文件\Vue>

害羞的新手 发表于 2023-6-25 15:26:54

重置源看一下,要不就重新设置淘宝源

suda_code 发表于 2023-6-25 18:23:16

先设置一下最佳答案,先试一试,实在不行再问一遍
页: [1]
查看完整版本: 部署Vue时报错