Mac M1 Homebrew 설치 방법 절차
검색 소프트웨어:brew search 패키지 이름
설치 소프트웨어:brew install 패키지 이름
마 운 트 해제 소프트웨어:brew uninstall 패키지 이름
오류 해결
질문 1:curl:(7)연결 하지 못 했 습 니 다.http://raw.githubusercontent.com port 443:연결 이 거부 되 었 습 니 다."오류
해결 방법:
웹 사 이 트 를 열 어 raw.githubuscontent.com 호스트 의 실제 IP 를 조회 합 니 다.
/etc/hosts 파일 을 열 고 기록 을 추가 합 니 다.
185.199.108.133 raw.githubusercontent.com
문제 2:brew install 에 다음 과 같은 오류 가 발생 하면 설치 시 arch-arm 64 brew install 패키지 이름 으로 설치 합 니 다.설치 디 렉 터 리 만 들 기
Homebrew 설치 스 크 립 트 는 프로그램 을 기본 값 으로/usr/local/Homebrew 에 설치 합 니 다.이것 은 Intel 칩 구조 상의 설치 경로 이 고 M1 칩 에는/opt/Homebrew/아래 에 설치 해 야 합 니 다.
sudo mkdir -p /opt/homebrew
sudo chown -R $(whoami) /opt/homebrew
homebrew 가방 을 다운로드 하고/opt/homebrew 디 렉 터 리 로 압축 을 풀 수 있 습 니 다.
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
다운로드 가 느 리 면www.ipaddress.com또는https://github.com/Homebrew/brew/tarball/master다운로드,copy/opt 디 렉 터 리 에서 압축 패 키 지 를/opt/homebrew 디 렉 터 리 로 압축 해제 할 수 있 습 니 다.
cp /opt
tar xz --strip 1 -C homebrew
PATH 환경 변수 에 경로 추가
vim ~/.bash_profile
# .bash_profile
export PATH=$PATH:/opt/homebrew/bin;
#
#
source ~/.bash_profile
원본 수정
cd "$(brew --repo)"
git clone https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew"
git clone https://mirrors.ustc.edu.cn/homebrew-core.git
git clone https://mirrors.ustc.edu.cn/homebrew-cask.git
brew update #
다른 이미지 주소:홈 브 루 공식 미 러:
brew: https://github.com/Homebrew/brew
core: https://github.com/Homebrew/homebrew-core
cask: https://github.com/Homebrew/homebrew-cask
청화대학 거울:
brew: https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
core: https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
cask: https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
중과 대 경상:
brew: https://mirrors.ustc.edu.cn/brew.git
core: https://mirrors.ustc.edu.cn/homebrew-core.git
cask: https://mirrors.ustc.edu.cn/homebrew-cask.git
드디어 다운 로드 를 할 수 있 게 됐 습 니 다.
brew install -s
여기에 맥 M1 이 홈 브 로 우 를 설치 하 는 방법 과 절차 에 관 한 글 은 여기까지 소개 되 었 습 니 다.더 많은 M1 설치 홈 브 로 우 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 부탁드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Mac의 Android Studio에서 ':app:debugRuntimeClasspath'오류본 기사는 이하 블로그로부터의 전재입니다. Windows의 Android Studio에서는 제대로 움직이고 있던 프로젝트가, Mac의 Android Studio에서는 움직이지 않고. 오류에 대응했습니다. 원래 Win...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.