본문 바로가기
IT라이프/Linux

M2Crypto 설치 on Mac OS X 10.8

by zairan 2013. 10. 9.

아래 차례대로 설치하면 되겠다.

처음부터 M2Crypto 설치하기전에 2 개가 먼저 설치되어야 한다.


우선 OpenSSL 을 설치


1. Installing the OpenSSL headers

http://www.openssl.org/source/


$ cd openssl-x-x-x

$ ./Configure --prefix=/usr/local darwin64-x86_64-cc

$ make && make test

$ sudo make install


다음에는 swig 을 설치


2. Installing the swig with out PCRE(Perl Compatible Regular Expressions)

http://www.swig.org/download.html


$ cd swig-x.x.x

$ ./configure --prefix=/usr/local --without-pcre

$ make

$ sudo make install


마지막으로 M2Crypto 를 설치하면 되겠다.


3. Installing M2Crypto

http://chandlerproject.org/Projects/MeTooCrypto


$ workon x

$ cd ~/.virtualenvs/x/build

$ curl -O M2Crypto-0.21.1.tar.gz

$ open M2Crypto-0.21.1.tar.gz

$ cd M2Crypto-0.21.1

$ python setup.py build build_ext --openssl=/usr/local

$ python setup.py install build_ext --openssl=/usr/local


위 작업을 사실은 아래와 같은 방법으로 설치했다(본인)

또 다른 3 번


http://chandlerproject.org/Projects/MeTooCrypto 에서 파일 다운로드, 

easy_install M2Crypto-0.21.1-py2.7-macosx-10.8-intel.egg로 설치

반응형

'IT라이프 > Linux' 카테고리의 다른 글

리눅스 설정파일 로딩순서 (bash_)  (0) 2016.04.18
SVN  (0) 2015.03.04
install Homebrew  (0) 2014.03.20
Django template 変数繰り返し  (0) 2013.09.30
8자리 유니크코드 만들기  (0) 2013.09.30

댓글