Skip to content

Commit

Permalink
py fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keminar committed Jul 18, 2016
1 parent 7b5940d commit 26e5d2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shell/debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# 编译环境
function install_build
{
apt-get install build-essential
apt-get install build-essential libssl-dev
show_log "Build environment installed"
}
4 changes: 2 additions & 2 deletions shell/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function install_ez
return
fi
cd $DIST_DIR
wget -c -q http://peak.telecommunity.com/dist/ez_setup.py | tee -a $LOG_FILE
wget -c --no-check-certificate https://bootstrap.pypa.io/ez_setup.py | tee -a $LOG_FILE
$INSTALL_DIR/python/bin/python ez_setup.py | tee -a $LOG_FILE
show_log "Easy_install installed"
}
Expand All @@ -50,7 +50,7 @@ function install_pip
return
fi
cd $DIST_DIR
wget -c --no-check-certificate https://raw.github.com/pypa/pip/master/contrib/get-pip.py | tee -a $LOG_FILE
wget -c --no-check-certificate https://bootstrap.pypa.io/get-pip.py | tee -a $LOG_FILE
$INSTALL_DIR/python/bin/python get-pip.py | tee -a $LOG_FILE
show_log "Pip installed"
}
Expand Down

0 comments on commit 26e5d2c

Please sign in to comment.