Bower依賴node, npm和git。
安裝nodejs遇到
Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
Requires: libhttp_parser.so.2()(64bit)
Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
Requires: http-parser >= 2.7.0
這是因為該包從EPEL中刪除了,因為http-parser現在包含在RHEL 7.4中,而EPEL不提供在RHEL中的包。所以需要安裝第三方http-parser軟件包
sudo rpm -ivh https://kojipkgs.fedoraproject.org//packages/http-parser/2.7.1/3.el7/x86_64/http-parser-2.7.1-3.el7.x86_64.rpm
安裝完第三方http-parser之后就可以正常安裝nodejs(# sudo yum install nodejs),進而安裝bower.