This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## OS: CentOS 6.2 | |
| ## Python: 2.6.6 | |
| wget https://gmplib.org/download/gmp/gmp-6.0.0a.tar.xz | |
| tar -xJf gmp-6.0.0a.tar.xz | |
| cd gmp-6.0.0 | |
| make & make check & make install | |
| wget https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.1.tar.gz | |
| tar -xzf ./pycrypto-2.6.1.tar.gz | |
| cd pycrypto-2.6.1 | |
| ./configure --includedir=/usr/local/include/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #coding=utf-8 | |
| __author__ = 'brody' | |
| """ | |
| auto deploying java web application | |
| command examples: | |
| fab deploy_live | |
| fab rollback_beta | |
| run 'fab -l' for more | |
| """ |