123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://blog.linuxeye.cn
- #
- # Notes: OneinStack for CentOS/RadHat 6+ Debian 6+ and Ubuntu 12+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/lj2007331/oneinstack
- Install_Python() {
- pushd ${oneinstack_dir}/src > /dev/null
- if [ "${CentOS_RHEL_ver}" == '7' ]; then
- [ ! -e /etc/yum.repos.d/epel.repo ] && cat > /etc/yum.repos.d/epel.repo << EOF
- [epel]
- name=Extra Packages for Enterprise Linux 7 - \$basearch
- #baseurl=http://download.fedoraproject.org/pub/epel/7/\$basearch
- mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=\$basearch
- failovermethod=priority
- enabled=1
- gpgcheck=0
- EOF
- elif [ "${CentOS_RHEL_ver}" == '6' ]; then
- [ ! -e /etc/yum.repos.d/epel.repo ] && cat > /etc/yum.repos.d/epel.repo << EOF
- [epel]
- name=Extra Packages for Enterprise Linux 6 - \$basearch
- #baseurl=http://download.fedoraproject.org/pub/epel/6/\$basearch
- mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=\$basearch
- failovermethod=priority
- enabled=1
- gpgcheck=0
- EOF
- fi
- if [ "${OS}" == "CentOS" ]; then
- pkgList="gcc dialog augeas-libs openssl openssl-devel libffi-devel redhat-rpm-config ca-certificates"
- for Package in ${pkgList}; do
- yum -y install ${Package}
- done
- elif [[ "${OS}" =~ ^Ubuntu$|^Debian$ ]]; then
- pkgList="gcc dialog libaugeas0 augeas-lenses libssl-dev libffi-dev ca-certificates"
- for Package in ${pkgList}; do
- apt-get -y install $Package
- done
- fi
- # Install Python
- if [ ! -e "${python_install_dir}/bin/python" -a ! -e "${python_install_dir}/bin/python3" ] ;then
- src_url=http://mirrors.linuxeye.com/oneinstack/src/Python-${python_ver}.tgz && Download_src
- tar xzf Python-${python_ver}.tgz
- pushd Python-${python_ver}
- ./configure --prefix=${python_install_dir}
- make && make install
- [ ! -e "${python_install_dir}/bin/python" -a -e "${python_install_dir}/bin/python3" ] && ln -s ${python_install_dir}/bin/python{3,}
- popd
- rm -rf Python-${python_ver}
- fi
- if [ ! -e "${python_install_dir}/bin/easy_install" ] ;then
- src_url=http://mirrors.linuxeye.com/oneinstack/src/setuptools-${setuptools_ver}.zip && Download_src
- unzip -q setuptools-${setuptools_ver}.zip
- pushd setuptools-${setuptools_ver}
- ${python_install_dir}/bin/python setup.py install
- popd
- rm -rf setuptools-${setuptools_ver}
- fi
- if [ ! -e "${python_install_dir}/bin/pip" ] ;then
- src_url=http://mirrors.linuxeye.com/oneinstack/src/pip-${pip_ver}.tar.gz && Download_src
- tar xzf pip-${pip_ver}.tar.gz
- pushd pip-${pip_ver}
- ${python_install_dir}/bin/python setup.py install
- popd
- rm -rf pip-${pip_ver}
- fi
- if [ ! -e "/root/.pip/pip.conf" ] ;then
- # get the IP information
- PUBLIC_IPADDR=$(../include/get_public_ipaddr.py)
- IPADDR_COUNTRY=$(../include/get_ipaddr_state.py $PUBLIC_IPADDR | awk '{print $1}')
- if [ "$IPADDR_COUNTRY"x == "CN"x ]; then
- [ ! -d "/root/.pip" ] && mkdir /root/.pip
- echo -e "[global]\nindex-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf
- fi
- fi
- popd
- }
|