我正在尝试使用此命令安装Homebrew:
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
并收到以下错误:
-e:4: syntax error, unexpected '<'
<!DOCTYPE html>
^
-e:5: syntax error, unexpected '<'
<html>
^
-e:7: syntax error, unexpected '<'
<meta charset='utf-8'>
^
-e:8: syntax error, unexpected '<'
<meta http-equiv="X-UA-Compatible" content="IE=10">
^
-e:8: syntax error, unexpected tIDENTIFIER, expecting $end
<meta http-equiv="X-UA-Compatible" content="IE=10">
我是Ruby和Homebrew的新手,所以任何帮助都会受到赞赏。
答案 0 :(得分:1)
你从哪里得到那个命令?我想你应该尝试运行http://brew.sh首页上列出的命令。命令是:
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
您运行的命令的问题是它加载HTML网页并尝试在Ruby中运行它。 brew.sh首页的命令实际上加载了一个Ruby脚本。