MacでHomebrewのイメージソースを置き換える方法
2022-01-03 05:20:55
1. CUSTOMERソースを使用する
(1) デフォルトのソースを置き換える
ステップ1: brew.gitの置き換え
cd "$(brew --repo)"
git remote-set-url origin https://mirrors.ustc.edu.cn/brew.git
ステップ2:homebrew-core.gitの置き換え
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote-set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
cd
brew update
(2) 自作ボトルソースの置き換え
Homebrew は、OS X システム用のオープンソースパッケージマネージャです。Homebrew Bottles は Homebrew が提供するバイナリコードのパッケージで、現在ミラー上の以下のレポジトリに含まれています。
homebrew/homebrew-core
homebrew/homebrew-dupes
homebrew/homebrew-games
homebrew/homebrew-gui
homebrew/homebrew-python
homebrew/homebrew-php
homebrew/homebrew-science
homebrew/homebrew-versions
homebrew/homebrew-x11
bashユーザー向け。
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
zshをお使いの方へ
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
2. 明確なソースを使用する
(1) デフォルトのソースを置き換える
ステップ1:既存の上流を置き換える
cd "$(brew --repo)"
git remote-set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote-set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
cd
brew update
ステップ 2: homebrew-science または homebrew-python を使用します。
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-science"
git remote-set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-science.git
または
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-python"
git remote-set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-python.git
cd
brew update
(2) 自作ボトルソースの置き換え
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
3. CSUのソースや清華のソースが故障したりダウンした場合に、公式のソースに切り替えることができる
ステップ1: brew.gitをリセットする
cd "$(brew --repo)"
git remote-set-url origin https://github.com/Homebrew/brew.git
ステップ2:homebrew-core.gitをリセットする
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote-set-url origin https://github.com/Homebrew/homebrew-core.git
cd
brew update
ステップ3:Homebrew Bottlesに関するbash設定ファイルをコメントアウトして、公式ソースを復元します。bashを再起動するか、bashに設定ファイルを再読み込みさせます。
MacでHomebrewのミラーソースを置き換える方法についての記事は以上となります。MacでHomebrewのミラーソースを置き換える方法については、Scripting Houseの過去記事を検索するか、引き続き以下の関連記事を参照してください。
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
OAuth 1.0から2.1への展開の道のり
-
BurpSuiteのインストールと設定の詳細
-
UltraEdit エディタ無料起動方法
-
VSCodeリモートサーバ接続エラー:Could not establish connection to VSCode
-
roolupを使ったライブラリの構築(ステップバイステップの実装)
-
[解決済み】ターミナルで"-"破線のファイル名を開くには?
-
[解決済み】「collect2: error: ld returned 1 exit status」とはどういう意味ですか?
-
[解決済み】コンストラクタが与えられた型に適用できない?
-
C1ミッション01:ゲームアーカイブスの改造方法
-
DevOps、CI、CD、自動化を一挙に解説