>  기사  >  백엔드 개발  >  下载安装setuptool和pip linux安装pip

下载安装setuptool和pip linux安装pip

WBOY
WBOY원래의
2016-06-16 08:45:291361검색

复制代码 代码如下:

#! /bin/bash
files_url=(https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz#md5=2044725530450d0517393882dc4b7508 https://pypi.python.org/packages/source/p/pip/pip-1.5.tar.gz)
files=(setuptools pip)

packages_dir=/data/packages/temp/

if [ ! -d $packages_dir ]
then
    mkdir -p $packages_dir
fi

downfile(){
    count=0
    for i in ${files_url[*]}
    do
            wget $i -O $packages_dir${files[$count]}".tgz"
            tar xvzf $packages_dir${files[$count]}".tgz" -C $packages_dir
            count=$(($count + 1))
    done
}

installfile(){
    for z in $(ls $packages_dir)
    do
        pacname=$(tar tf $packages_dir/$z | head -1 | cut -d / -f 1)
        tar xvzf $packages_dir$z -C $packages_dir
            python  $packages_dir$pacname/setup.py install
    done
}
downfile
installfile
echo -e "#############"
echo -e "#python   ok#"
echo -e "#############"

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.