기본 콘텐츠로 건너뛰기

Mac 맥 맥북 m1 HomeBrew 설치하기

개발 패키지 툴??

관리 편하게 하는 Brew를 설치함

공식 홈페이지는 https://brew.sh/

1
/bin/bash -"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cs

터미널에서 해당 코드값 넣고 설치

설치 후 brew 쳐보기

1
2
ddoongmause@DDoongMauseui-MacBookPro ~ % brew     
zsh: command not found: brew
cs

brew 설치가 완료되지 않음

터미널 잘 보면

1
2
3
4
5
6
7
==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
    (echoecho 'eval "$(/opt/homebrew/bin/brew shellenv)"'>> /Users/ddoongmause/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    https://docs.brew.sh
cs

다음 스탭에 대해서 알려줌

1
2
3
ddoongmause@DDoongMauseui-MacBookPro ~ % (echoecho 'eval "$(/opt/homebrew/bin/brew shellenv)"'>> /Users/ddoongmause/.zprofile
ddoongmause@DDoongMauseui-MacBookPro ~ % eval "$(/opt/homebrew/bin/brew shellenv)"
 
cs

두줄 실행하면 설치 완료

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[ddoongmause@DDoongMauseui-MacBookPro ~ % brew
Example usage:
  brew search TEXT|/REGEX/
  brew info [FORMULA|CASK...]
  brew install FORMULA|CASK...
  brew update
  brew upgrade [FORMULA|CASK...]
  brew uninstall FORMULA|CASK...
  brew list [FORMULA|CASK...]
 
Troubleshooting:
  brew config
  brew doctor
  brew install --verbose --debug FORMULA|CASK
 
Contributing:
  brew create URL [--no-fetch]
  brew edit [FORMULA|CASK...]
 
Further help:
  brew commands
  brew help [COMMAND]
  man brew
  https://docs.brew.sh
cs

정상적으로 설치 확인


댓글

이 블로그의 인기 게시물

메이븐으로 라이브러리 인식

 간혹 퍼블릭 jar가 아닌 파일이 있는데 그럴때 쓰면 될듯 <dependency> <groupId> SimpleCryptLib </groupId> <artifactId> SimpleCryptLib </artifactId> <version> 1.1.0 </version> <scope> system </scope> <systemPath> ${basedir}/src/main/webapp/WEB-INF/lib/SimpleCryptLib-1.1.0.jar </systemPath> </dependency> version, scope, systemPath는 꼭 작성해야 한다 groupId, artifactId, version은 암거나 해도 되는거 같음 최근(2021.05.04)스프링 부트    < dependency > < groupId > NiceID </ groupId > < artifactId > NiceID </ artifactId > < version > 1.0 </ version > < scope > system </ scope > < systemPath > ${basedir}/src/main/resources/lib/NiceID.jar </ systemPath > </ dependency > 이걸 추가해주는것도 필요할지도..?? < build > < plugins > < plugin > < groupId > org.springframework.boot </ groupId > < artifactId > spring-bo...

mac 맥 맥북 Brew 완전 삭제

맥북에서 Brew 초기화 Brew를 써서 h2를 쓰려고 하는데 brew install h2가 안되서 이리 저리 알아보다가 완전 삭제 후 다시 설치 하니까 되서 그 방법을 남겨놈 1. 터미널에 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)" 입력후 y랑 뭐 비번.. 2. /usr/local 폴더에서 Homebrew 폴더 삭제 rm -rf Homebrew/ 권한설정으로 잘.....삭제하고 3. 다시 설치 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 좀 오래걸리니까 기다려야한다는걸 배움... 출처.... https://discourse.brew.sh/t/error-no-formulae-found-in-taps/8331/9