'프로그래밍/ZeroMQ'에 해당되는 글 1건

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

일단 http://kr.zeromq.org/page:get-the-software 여기서 파일들을 다운로드 받는다.

(현재 stable 한 버전은 2.1, 개인의 취향에 따라 git Download 도 가능.) 


나의경우, Mac OS X  를 사용중이기 때문에, 압축파일을 통짜로 다운로드 받음.


파일들의 압축을 풀고, 라이브러리 빌드 시작... 


빌드 방법은 홈페이지에 친절하게 되어있음. 

  1. libtoolautoconfautomake가 설치되어 있는지 확인하세요
  2. uuid-dev 패키지, uuid/e2fsprogs RPM이나 이것과 동등한 것이 시스템에 설치되어 있는지 확인 합니다.
  3. .tar.gz 소스아키이브를 풀고
  4. make 명령에 의해 ./configure를 실행합니다.
  5. ØMQ시스템 전체를 설치하기 위해서 sudo make install을 실행합니다.
  6. 리눅스에서 ØMQ를 설치한 후 sudo ldconfig를 실행합니다.

이렇게 하면 usr/local/lib 에 zeromq 의 라이브러리 파일이, 

usr/local/include 에 zeromq 의 헤더파일이 생성된다. 


OS X 의 파일 시스템에 익숙치 못해 똑같은 짓을 몇번 반복... 


여튼 설치는 완료, 다음은 node.js 에서 zeromq 설치


npm install zmq.... 언제나 그렇듯 처음은 에러로 시작 


LeeHwangChunui-MacBook-Air:ZeroMQTest leehwangchun$ npm install zmq

\

> zmq@2.14.0 install /Users/leehwangchun/WebstormProjects/ZeroMQTest/node_modules/zmq

> node-gyp rebuild


/bin/sh: pkg-config: command not found

gyp: Call to 'pkg-config libzmq --libs' returned exit status 127 while in binding.gyp. while trying to load binding.gyp

gyp ERR! configure error 

gyp ERR! stack Error: `gyp` failed with exit code: 1

gyp ERR! stack     at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:305:16)

gyp ERR! stack     at emitTwo (events.js:87:13)

gyp ERR! stack     at ChildProcess.emit (events.js:172:7)

gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)

gyp ERR! System Darwin 15.3.0

gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"

gyp ERR! cwd /Users/leehwangchun/WebstormProjects/ZeroMQTest/node_modules/zmq

gyp ERR! node -v v4.4.3

gyp ERR! node-gyp -v v3.3.1

gyp ERR! not ok 

npm ERR! Darwin 15.3.0

npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "zmq"

npm ERR! node v4.4.3

npm ERR! npm  v2.15.1

npm ERR! code ELIFECYCLE


npm ERR! zmq@2.14.0 install: `node-gyp rebuild`

npm ERR! Exit status 1

npm ERR! 

npm ERR! Failed at the zmq@2.14.0 install script 'node-gyp rebuild'.

npm ERR! This is most likely a problem with the zmq package,

npm ERR! not with npm itself.

npm ERR! Tell the author that this fails on your system:

npm ERR!     node-gyp rebuild

npm ERR! You can get information on how to open an issue for this project with:

npm ERR!     npm bugs zmq

npm ERR! Or if that isn't available, you can get their info via:

npm ERR! 

npm ERR!     npm owner ls zmq

npm ERR! There is likely additional logging output above.


npm ERR! Please include the following file with any support request:

npm ERR!     /Users/leehwangchun/WebstormProjects/ZeroMQTest/npm-debug.log


npm 홈페이지에 가보니 이것저것 설치가 필요하다고 한다. 


zeromq 라이브러리 설치에 필요한건 세개 


1. Zeromq 라이브러리 ( http://zeromq.org/intro:get-the-software )

2. Homebrew 패키지  ( http://brew.sh/index_ko.html )

3. Homebrew 패키지로 pkg-config 다운 (brew install pkg-config 명령어를 터미널에서 입력)


이후 Webstorm 을 켜고, npm install zmq 타이핑


\

> zmq@2.14.0 install /Users/leehwangchun/WebstormProjects/ZeroMQTest/node_modules/zmq

> node-gyp rebuild


  CXX(target) Release/obj.target/zmq/binding.o

  SOLINK_MODULE(target) Release/zmq.node

ld: warning: directory not found for option '-L/opt/local/lib'

zmq@2.14.0 node_modules/zmq

├── bindings@1.2.1

└── nan@2.0.9

 

성공이다, 이제 API 문서보고 하나씩 해나가면 된다. 

블로그 이미지

캡틴토마스

그저 걷고 있는거지...

,