Ubuntu 安装 HomeBrew

HomeBrew官方网站

点击进入


创建日期:2017年7月5日14:25:50

brew类似于apt-get,可以管理软件的安装和卸载。

步骤:

将如下代码粘贴到终端:

ruby -e "$(wget -O- https://raw.github.com/Homebrew/linuxbrew/go/install)"

如果报真是个错误,用一下命令

ruby -e "$(wget -O- https://raw.github.com/Homebrew/linuxbrew/go/install --no-check-certificate)"

或者你更喜欢使用如下操作:

git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew

添加到你的 .bashrc 或者 .zshrc:

export PATH="$HOME/.linuxbrew/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/.linuxbrew/lib:$LD_LIBRARY_PATH"

现在已经完成了!

brew地址:https://github.com/Homebrew/linuxbrew

你可能感兴趣的:(Linux)