Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nohup
- postgresql
- STF
- rethinkdb
- perfect
- insert
- 28015
- Jupyter Notebook
- create table
- nmap
- ubuntu
- appium server
- mysql
- postgres
- Jupyter
- kitura
- 실행권한
- openpyxl
- port forwarding
- appium
- Materials
- STF_PortForwarding
- PYTHON
- centos
- nGrinder
- ftp
- SWIFT
- sshpass
- GoCD
- ssh
Archives
- Today
- Total
don't stop believing
Homebrew 설치 본문
Homebrew는 Apple에서 제공하지 않는 유용한 패키지를 관리합니다.
[https://brew.sh/index_ko.html]
설치 명령은 아래와 같습니다.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
설치 후 버전 확인인 -v로 확인 할 수 있다.
$ brew -v Homebrew 1.3.6 Homebrew/homebrew-core (git revision 1728; last commit 2017-10-25)
brew를 통해 설치된 리스트를 확인하려면 list 옵션으로 가능하다.
$ brew list
만약 설치 후 brew 명령을 실행했을때 -bash: brew: command not found 메시지가 나올경우 PATH적용이 되어있는지 확인한다.
.bash_profile에서 아래 내용을 확인한다.
$ sudo vim .bash_profile
마지막 줄에 아래 내용을 확인한다.
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
source로 설정을 저장한다.
$ source ~/.bash_profile
brew로 설치된 항목을 확인하고 싶다면
$ brew list
'Linux > Mac' 카테고리의 다른 글
brew로 python downgrade 하기 (3.7 -> 3.6.5) (0) | 2018.08.27 |
---|---|
Mac에서 hosts 파일 변경 (0) | 2017.12.26 |
nmap으로 네트워크 내 특정 포트 찾기 (0) | 2017.12.22 |
자주 사용하는 Mac 단축키 (0) | 2017.11.12 |
터미널 깔끔하게 설정하기 (0) | 2017.11.10 |
Comments