'프로그래밍/iOS, macOS, Objective-C'에 해당되는 글 15건

  1. 2016.07.29 [macOS] 텍스트 파일 빈줄 제거하기 (TextWrangler)
  2. 2016.07.29 [macOS] homebrew 설치 명령어
  3. 2016.07.29 [macOS] brew 설치/업데이트 오류시 대처방법
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1. TextWrangler로 텍스트 파일을 연다.
2. Find & Repllace 창을 연다
3. Grep 체크
4. Find: 에 ^\r 을 입력한다.
5. Replace All




Posted by 고독한 프로그래머
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.



Uninstall HomeBrew

 ruby -"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
Install HomeBrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"


Posted by 고독한 프로그래머
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.


brew update 또는 brew install 을 할 때에 아래와 같은 오류가 발생하는 경우가 있습니다.

  Error: Cowardly refusing to 'sudo brew update'
 You can use brew with sudo, but only if the brew executable is owned by root.
 However, this is both not recommended and completely unsupported so do so at your own risk.




아래 명령어를 입력한 후 다시 실행하면 됩니다.


  sudo chown root /usr/local/bin/brew 




* 출처: http://stackoverflow.com/questions/19039404/error-cowardly-refusing-to-sudo-brew-install-for-installing-glue-0-3-for-mac


Posted by 고독한 프로그래머