发布于 2014-10-23 09:16:42 | 368 次阅读 | 评论: 0 | 来源: 网友投递
pip Python包安装和管理工具
pip 是一种安装和管理 Python 包的工具。
本文为大家讲解了linux上安装python组件pip,依赖wget,目前还不够智能,大家参考使用吧
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 "#############"