草庐IT

brew换源

one.dream 2023-04-03 原文

查看 brew.git 当前源

$ cd “$(brew --repo)” && git remote -v
origin https://github.com/Homebrew/brew.git (fetch)
origin https://github.com/Homebrew/brew.git (push)

查看 homebrew-core.git 当前源

$ cd “$(brew --repo homebrew/core)” && git remote -v
origin https://github.com/Homebrew/homebrew-core.git (fetch)
origin https://github.com/Homebrew/homebrew-core.git (push)

修改 brew.git 为阿里源

$ git -C “$(brew --repo)” remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git

修改 homebrew-core.git 为阿里源

$ git -C “$(brew --repo homebrew/core)” remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git

zsh 替换 brew bintray 镜像

$ echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles’ >> ~/.zshrc
$ source ~/.zshrc

bash 替换 brew bintray 镜像

$ echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles’ >> ~/.bash_profile
$ source ~/.bash_profile

刷新源

$ brew update

有关brew换源的更多相关文章

  1. ruby - 无法 'brew link' imagemagick - 2

    我正在尝试通过brew安装Imagemagick,我在安装时收到此消息:Warning:imagemagick-6.8.6-3alreadyinstalled,it'sjustnotlinked当我尝试通过brewlink链接它时,我得到了这个:brewlinkimagemagickWarning:Couldnotlinkimagemagick.Unlinking...Linking/usr/local/Cellar/imagemagick/6.8.6-3...Error:Fileexists-/usr/local/etc想法??我试过:'brewlink-fimagemagick'没

  2. ruby-on-rails - PostgreSQL gem for rails 不会安装,即使同时安装了 home brew 和 app - 2

    我试过按照这个answer让gem工作,但它不会。我设置了我的项目,这样各个项目都有自己的gem,而不是生活在全局空间中的所有主题gem,然后我使用binstubs来允许我做bin/rails.因此,每个项目的所有gem都安装到.bundle/gems/。总是给我带来最棘手问题的是posgresql。让我们完成这些步骤。所以我跑:bundle它爆炸说:Gem::Installer::ExtensionBuildError:ERROR:Failedtobuildgemnativeextension./System/Library/Frameworks/Ruby.framework/Ver

  3. ruby - 尝试使用 brew 而不是端口在 Snow Leopard 上安装 ruby​​-filemagic - 2

    我正在尝试安装ruby​​-filemagic。我试过sudogeminstallruby​​-filemagic-v0.2.2并得到:ERROR:Errorinstallingruby-filemagic:ERROR:Failedtobuildgemnativeextension./System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/rubyextconf.rbcheckingformagic_open()in-lmagic...no***extconf.rbfailed***CouldnotcreateMake

  4. ruby-on-rails - ruby 和 brew 配方有什么区别? - 2

    ruby和brew配方之间的主要区别是什么?具体什么时候用哪个不是很清楚。有时我看到gems是如何用brew安装的,这有点令人困惑。 最佳答案 RubyGems和Homebrew都是包管理器。RubyGems是为安装gems而创建的,而Homebrew是一个更通用的工具,可以构建、安装和管理包括gems在内的不同软件包。Homebrew与MacOSX绑定(bind),而RubyGems可在多个平台上运行。最好的建议?按照您所遵循的书籍/教程告诉您做的任何事情,让您的偏好随着时间的推移而发展,直到您有足够的经验知道自己想要什么。综上所

  5. ruby - OpenSSL、RVM、Brew、冲突错误 - 2

    当我在终端中运行brewdoctor时:我收到以下错误:Warning:Somekeg-onlyformulaarelinkedintotheCellar.Youmaywishto`brewunlink`thesebrews:openssl如果我取消链接,然后输入rvmrequirements:我将收到以下错误。Checkingrequirementsforosx.dyld:Librarynotloaded:@@HOMEBREW_CELLAR@@/openssl/1.0.1f/lib/libssl.1.0.0.dylibReferencedfrom:/usr/local/opt/ope

  6. ruby-on-rails - 使用 brew 时出现 "bad interpreter"错误 - 2

    当我尝试运行任何brew命令时出现此错误。Holger-Sindbaeks-MacBook-Air:~holgersindbaek$brewhelp-bash:/usr/local/bin/brew:/usr/bin/ruby:badinterpreter:Nosuchfileordirectory我完全不知道如何解决这个问题,并且搜索了很长时间都没有答案。 最佳答案 我遇到了这个错误(大致相同):/usr/local/bin/brew:/usr/local/Library/brew.rb:/System/Library/Frame

  7. ruby - 安装 Homebrew 时出错 - 找不到 Brew 命令 - 2

    这个问题在这里已经有了答案:InstallingHomebrewonmacOS(24个答案)关闭1年前。我星期五的大部分时间都在尝试在我的新MacBookAir(安装了MountainLion)上安装最新版本的Ruby。我拥有所有最新版本的XCode和命令行工具。但我似乎无法让Homebrew工作!Here'sascreenshotofwhereIkeepgettingstuck(我是新用户,所以不能嵌入这张图片)。如您所见,我使用以下工具安装Homebrew:ruby-e"$(curl-fsSkLraw.github.com/mxcl/homebrew/go/install)"虽然有

  8. ruby - 在 Mac 10.7 上运行 'requirements_osx_brew_libs_install...' 时出错 - 2

    尝试在上一代MacbookPro上安装brew并不断收到以下错误:Errorrunning'requirements_osx_brew_libs_installautoconfautomakelibtoolpkg-configapple-gcc42libyamlreadlinelibxml2libxsltlibksbaopensslsqlite',pleaseread/Users/allegrascrugham/.rvm/log/ruby-1.9.3-p392/1368142352_package_install_autoconf_automake_libtool_pkg-config

  9. ruby - 安装 Ruby gems 不适用于 Home Brew - 2

    我通过sudogeminstall...安装的gems无法执行(我得到一个commandnotfound)。它们似乎安装在/usr/local/Cellar/中,这是Brew的安装目录(此外,/Library/Ruby/中的gems也不起作用)。我还需要做些什么来使gems可执行吗?我在MacOSX10.6上使用ZSH,在Brew中使用Rubyv1.8。编辑:它现在似乎正在工作。我刚出去几个小时,回来再试一次。 最佳答案 Homebrew软件很好。然而不像brew和npm,gem不在/usr/local/bin中创建别名自动。解决方

  10. go - 使用brew安装fluxctl - 2

    Closed.ThisquestiondoesnotmeetStackOverflowguidelines。它当前不接受答案。想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。去年关闭。Improvethisquestion我正在尝试使用brew安装fluxctl,但出现以下错误:go:downloadinggolang.org/x/syncv0.0.0-20190227155943-e225da77a7e6go:extractinggolang.org/x/syncv0.0.0-20190227155943-e225da77a7e6buildgithub.com/

随机推荐