다음에 앞서서 asdf 설치가 되어야합니다
2022.04.06 - [Dev/Basic] - Mac ASDF 설치 (Homebrew)
설치가 되었으면 다음 과정을 따라합니다
# osx에서 ssl 관련 에러 발생할 수 있으므로 설치합니다
$ brew install autoconf
$ brew install openssl@1.1
# For building with wxWidgets (start observer or debugger!)
$ brew install wxwidgets
# For building documentation and elixir reference builds
$ brew install libxslt fop
# plugin 설치
$ asdf plugin add erlang https://github.com/asdf-vm/asdf-erlang.git
# erlang list
$ asdf list-all erlang
# install
$ export KERL_CONFIGURE_OPTIONS="--without-javac --with-ssl=$(brew --prefix openssl@1.1)"
$ asdf install erlang 24.3
# erlang 등록
$ asdf global erlang 24.3
# erlang 버전 체크를 위해서 erlang shell에 접속합니다
$ erl
# erl ver. with opt ver. 표시됩니다
# erlang shell을 나가려면 > 뒤의 q() 함수를 실행합니다. 맨 뒤의 .(dot) 빼먹지 말아주세요
> q().
'Dev > 환경세팅' 카테고리의 다른 글
[Mac] Elixir 설치 (asdf) (0) | 2022.05.15 |
---|---|
[Mac] Rust 설치 (asdf) (0) | 2022.05.15 |
[Mac] GoLang 설치 (asdf) (0) | 2022.05.15 |
[Mac] Node 설치 (asdf) (0) | 2022.05.15 |
[Mac] Python 설치 (asdf) (0) | 2022.05.15 |