Tools/Automation Tools
Fabric 설치
변익수
2012. 10. 31. 13:47
반응형
# yum -y install python-devel python-setuptools
# cd /tmp
# wget ftp://ftp.gmplib.org/pub/gmp-5.0.5/gmp-5.0.5.tar.bz2
# tar jxvfp gmp-5.0.5.tar.bz2
# cd gmp-5.0.5
# ./configure && make && make install
# easy_install pip
# pip install nose
# pip uninstall pycrypto
# pip install pycrypto
# cd /usr/local
# git clone https://github.com/fabric/fabric.git
# cd fabric
# python setup.py install
반응형