목록개발이야기 (528)
준호씨의 블로그
osx installation brew install gradle 구 버전 설치 시 brew tap homebrew/versions brew search gradle brew install gradle@2.14 brew info gradle@2.14 /usr/local/Cellar/gradle@2.14/2.14.1 brew link --overwrite gradle@2.14 intelliJ /usr/local/opt/gradle/libexec 버전별 구분 하려면 /usr/local/Cellar/gradle/X.X/libexec 참고 https://gist.github.com/l1x/d8ba66343fceb927d691
https://sourceforge.net/projects/zsh/files/ 에서 zsh-5.4.2.tar.gz 다운로드 압축 풀고 ./configure && make && sudo make install 5.9 wget https://jaist.dl.sourceforge.net/project/zsh/zsh/5.9/zsh-5.9.tar.xz tar -xf zsh-5.9.tar.xz cd zsh-5.9 ./configure && make && sudo make install
c 언어용 json 라이브러리 찾아 보기 http://www.json.org/json-ko.html c 언어용 json 라이브러리 중 jansson 최신 문서 Jansson - Getting Started osx 에 jansson 설치 brew install jansson 직접 만들어 쓰기 C언어 코딩도장 83.0 실전 예제: JSON 파일 읽고 쓰기 https://dojang.io/mod/page/view.php?id=720
jenv 를 설치 해 두면 열어개의 jdk 를 설치 해 두고 버전을 바꿔 가며 쓸 수 있다. jenv 설치 brew install jenv 리스트 확인. 아직 설치 된 java 가 없음. $ jenv versions * system (set by /Users/junho85/.jenv/version) brew 로 jdk 설치 보통 java 설치는 oracle 사이트에서 다운 받아 설치 하지만 brew 로도 설치 할 수 있다. brew cask install java 최신 버전으로 설치 된다. (2017.11.26 기준으로 jdk9 이 설치 된다.) jdk8 을 설치 하려면 다음과 같이 버전을 적어 준다. brew cask install java8 jenv 에 java 추가 ~/.jenv/versions 디..
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..