목록OSX (135)
준호씨의 블로그
openssl 설치 brew install openssl openssl-dev 이런건 없음 설치 하면 다음과 같은 안내가 나온다. If you need to have this software first in your PATH run: echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.zshrc For compilers to find this software you may need to set: LDFLAGS: -L/usr/local/opt/openssl/lib CPPFLAGS: -I/usr/local/opt/openssl/include openssl 커맨드를 시스템 커맨드 말고 설치한 커맨드로 변경 echo 'export PATH="/usr/loc..
기본 설정은 다음과 같이 Scrolling - with inertia 가 켜져 있고 Enable Dragging 은 꺼져 있다. Enable Dragging - with drag lock 으로 켜 준다. 이렇게 해 두면 더블 터치 해서 드래깅을 할 수 있다. 더블 터치 하면 락이 걸리고 드래그가 가능 해 진다. 드랍을 할 곳까지 이동 한 후 터치 하면 마우스로 클릭 한 상태로 드래그 하고 버튼에 손가락을 뗀 상태와 같은 상태가 된다.
전체 패키지 제거 brew remove --force $(brew list) --ignore-dependencies 사용하지 않는 archive 제거 brew cleanup 참고 https://darryldias.me/12/remove-all-installed-homebrew-packages/
하나의 시스템에서 여러버전의 개발언어를 설치 하고 스위칭 해가며 사용해야 될 경우가 있다. 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..