목록setup (4)
준호씨의 블로그
osx에도 grep, find, tail 등등 gnu커맨드와 비슷한 커맨드들이 있습니다. 그런데 gnu유틸의 커맨드들과는 조금씩 동작이 다른 경우가 있는데요. 예를 들어 아래와 같이 -n 옵션을 뒤에 적어 주면 해당 옵션은 무시되고 오류가 발생하는데요. $ tail -f some.log -n 3 tail: -n: No such file or directory tail: 3: No such file or directory ==> some.log Caveats Commands also provided by macOS and the commands dir, dircolors, vdir have been installed with the prefix "g". If you need to use these comm..
osx 에 기본적으로 python 은 있는데 pip 는 없다. sudo easy_install pip 로 설치 해 주면 된다. 참고 https://ahmadawais.com/install-pip-macos-os-x-python/
2017.12.14 기준으로 최신 brew 와 osx 기준에서 다음 커맨드로 바로 설치 가능. brew install R R 이나 r 이나 대소문자는 상관 없다. 추가 기능을 지원하도록 하려면 아래 옵션을 추가 해 준다. --with-java Build with java support --with-openblas Build with openblas support 좀 옛 버전에서는 다음과 같이 몇가지 더 작업이 필요 하다. brew tap homebrew/science brew install Caskroom/cask/xquartz brew install r 관련글 OSX 에서 RStudio 설치. brew 로 설치. 권한문제 해결. 참고 https://stackoverflow.com/questions/20..
하나의 시스템에서 여러버전의 개발언어를 설치 하고 스위칭 해가며 사용해야 될 경우가 있다. node 에는 nvm, java 에는 jenv 가 있듯이 perl 에는 perlbrew 가 있다. https://perlbrew.pl/ 에 가서 설치 가이드를 따라 설치 해서 사용 하면 된다. 설치 \curl -L https://install.perlbrew.pl | bash curl 이 없다면 # Linux \wget -O - https://install.perlbrew.pl | bash # FreeBSD \fetch -o- https://install.perlbrew.pl | sh 이미 perl 이 설치된 환경이라면 sudo cpan App::perlbrew perlbrew init ~/.zshenv 에 sou..