Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Linux Debian 服务器上运行 node.js,并且在运行 .sh 脚本尝试安装 RPM 时遇到问题。
命令是: curl http://npmjs.org/install.sh | sh
curl http://npmjs.org/install.sh | sh
该脚本是受支持的安装 RPM 包。
-bash: sh: Syntax error: newline unexpected
谁能帮我解决这个问题?
用这个:
curl -k https://npmjs.org/install.sh | sudo sh
注意: npm 包含在新版本的 node.js 中。现在无需单独安装。
尝试:
curl -O https://www.npmjs.org/install.sh sudo sh install.sh
受此启发。