当我试图安装npm它说:404 Not Found [IP:91.189.88.149 80]怎么办?

sshcrbum  于 11个月前  发布在  其他
关注(0)|答案(2)|浏览(114)

当我尝试安装npm时,
404 Not Found Not Found [IP:91.189.88.149]

kse8i1jr

kse8i1jr1#

请更新您的软件包列表:apt-get update
libssl-dev的当前版本是1.0.2g-1ubuntu4.11(参见Ubuntu Packages)。
旧版本的软件包一旦过期足够长的时间,就会从ubuntu仓库中删除。在获取新的软件包信息后,软件包管理器会安装新版本。

ttp71kqs

ttp71kqs2#

我以前也犯过这个错误。

$ sudo apt install python3-pip
...
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-libc-dev_5.15.0-88.98_amd64.deb  
404  Not Found [IP: 185.125.190.39 80]

字符串
如果我试图更新apt,我会得到这样的错误:

$ sudo apt update
...
E: Release file for http://archive.ubuntu.com/ubuntu/dists/jammy-updates
/InRelease is not valid yet (invalid for another 19min 41s). Updates for 
this repository will not be applied.


在我的情况下,问题是WSL2 Ubuntu和Windows系统时钟不同步。

$ timedatectl
               Local time: Wed 2023-11-29 12:14:28 EST
           Universal time: Wed 2023-11-29 17:14:28 UTC
                 RTC time: Wed 2023-11-29 19:15:21
                Time zone: America/New_York (EST, -0500)
System clock synchronized: no
              NTP service: inactive
          RTC in local TZ: no


安装完时钟后,我就可以完成apt的更新和软件包的安装了。

$ sudo hwclock -s
$ sudo apt update
$ sudo apt install python3-pip

相关问题