-
-
Save islight/4618886 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| mkdir ~/down/ | |
| cd ~/down/ | |
| apt-get install build-essential | |
| wget http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tgz | |
| tar -xzf Python-2.7.2.tgz | |
| cd Python-2.7.2 | |
| apt-get install libsqlite3-dev zlib1g-dev libncurses5-dev | |
| apt-get install libgdbm-dev libbz2-dev libreadline5-dev | |
| apt-get install libssl-dev libdb-dev | |
| #tk8.4-dev | |
| ./configure --prefix=/opt/python27 --enable-shared | |
| make | |
| make install | |
| echo "/opt/python27/lib" | tee -a /etc/ld.so.conf.d/python27.conf | |
| ldconfig | |
| cd ~/down/ | |
| wget http://peak.telecommunity.com/dist/ez_setup.py | |
| /opt/python27/bin/python ez_setup.py | |
| /opt/python27/bin/ | |
| /opt/python27/bin/easy_install-2.7 virtualenv | |
| /opt/python27/bin/virtualenv ~/env | |
| cat >> ~/.profile <<DELIM | |
| if [ -d "\$HOME/env/bin" ] ; then | |
| PATH="\$HOME/env/bin:\$PATH" | |
| fi | |
| DELIM | |
| source ~/.profile | |
| #echo follow to ~/.profile | |
| #if [ -d "$HOME/env/bin" ] ; then | |
| # PATH="$HOME/env/bin:$PATH" | |
| #fi | |
| #export PATH="$HOME/env/bin:$PATH" | |
| apt-get install libmysqlclient-dev | |
| easy_install mysql-python | |
| echo 'we are done....' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment