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
| #!/usr/bin/env bash | |
| sudo apt-get update | |
| sudo apt-get install -y python | |
| sudo apt-get install -y git | |
| sudo apt-get install -y nginx | |
| # for Pillow | |
| sudo apt-get install -y libjpeg-dev # ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting | |
| sudo apt-get install -y zlib1g-dev # ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting |
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
| wget http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz | |
| cd Imaging-1.1.7/ | |
| sudo python setup.py install |
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
| #!/usr/bin/env bash | |
| # ImportError: The _imagingft C module is not installed | |
| apt-get install -y libfreetype6-dev | |
| apt-get install -y python-imaging | |
| pip install pillow | |
| pip install django-simple-captcha |
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
| #!/usr/bin/env bash | |
| # install nginx & uwsgi | |
| sudo apt-get install nginx | |
| pip install uwsgi | |
| # connect ngxin to django site | |
| ln -s /path/to/your/mysite/mysite_nginx.conf /etc/nginx/sites-enabled/ | |
| # restart or start whatever needed |
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
| #!/usr/bin/env bash | |
| wget https://pypi.python.org/packages/e2/af/0a3981fffc5cd43078eb8b1057702e0dd2d5771e5aaa36cbd140e32f8473/Pillow-3.2.0.tar.gz#md5=7cfd093c11205d9e2ebe3c51dfcad510 | |
| tar -xzvf Pillow-3.2.0.tar.gz | |
| cd Pillow-3.2.0 | |
| apt-get update | |
| apt-get install -y libjpeg-dev # ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting | |
| apt-get install -y zlib1g-dev # ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting | |
| apt-get install -y python-dev # error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 |
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
| #!/usr/bin/env bash | |
| wget https://www.djangoproject.com/m/releases/1.8/Django-1.8.6.tar.gz | |
| tar -xvzf Django-1.8.6.tar.gz | |
| cd Django-1.8.6 | |
| python setup.py install |
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
| #!/usr/bin/env bash | |
| apt-get update | |
| apt-get install -y python-pip | |
| pip install django==1.8.6 # or use install_django_without_pip.sh | |
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
| # http://www.liquidweb.com/kb/how-to-install-pip-on-centos-7/ | |
| curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | |
| sudo python get-pip.py |
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
| wget https://pypi.python.org/packages/source/T/Twisted/Twisted-16.1.1.tar.bz2 | |
| tar -jvxf Twisted-16.1.1.tar.bz2 | |
| cd Twisted-16.1.1 | |
| python setup.py install |
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
| # https://forum.directadmin.com/showthread.php?t=15878 | |
| cat /etc/*release* | |
| cat /etc/centos-release # http://www.liquidweb.com/kb/how-to-check-your-centos-version/ | |
| cat /etc/redhat-release | |
| # https://linuxconfig.org/how-to-check-centos-version | |
| # the later two may need some package to install | |
| rpm --query centos-release |