Powered By Blogger

2013年9月9日月曜日

centos6.4のpython2.7.5にパッケージを入れる(2)~モジュール編~

■easy_install
wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-1.1.1.tar.gz
cd setuptools-1.1.1
python2.7 setup.py install

確認
which easy_install-2.7
/usr/local/bin/easy_install-2.7

■pip
easy_install-2.7 pip

確認
which pip2.7
/usr/local/bin/pip2.7

■PyCrypto
easy_install-2.7 PyCrypto

■PyYAML
pip2.7 install PyYAML

■cuisine
pip2.7 install cuisine

■bottle
pip2.7 install bottle

■Fabric
pip2.7 install fabric