通过 curl 安装 nodejs 18.15.0 LTS 时,文件 nodesource_setup.sh 出现 404 错误

通过 curl 安装 nodejs 18.15.0 LTS 时,文件 nodesource_setup.sh 出现 404 错误

命令是 curl -sLhttps://deb.nodesource.com/setup_18.15.0-o nodesource_setup.sh 看起来安装文件是错误的,因为文件内容显示“404”。是我这边做错了什么,还是 nodejs 不允许下载和写入文件?

答案1

您尝试下载的文件返回错误,404 Not Found因为该文件在服务器上不存在。结果curl -sL https://deb.nodesource.com/setup_18.15.0如下:

<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>

相关内容