support installing default pip packages
This commit is contained in:
parent
05749c0f1e
commit
077fccdf9f
1 changed files with 14 additions and 0 deletions
14
bin/install
14
bin/install
|
@ -20,5 +20,19 @@ install_python() {
|
|||
$(python_build_path) "$version" "$install_path"
|
||||
}
|
||||
|
||||
install_default_eggs() {
|
||||
local default_eggs="${HOME}/.default-eggs"
|
||||
if [ ! -f $default_egg_packages ]; then return; fi
|
||||
for name in $(cat $default_eggs); do
|
||||
echo -ne "\nInstalling \e[33m${name}\e[39m egg ... "
|
||||
if pip install $name > /dev/null 2>&1; then
|
||||
echo -e "\e[32mSUCCESS\e[39m"
|
||||
else
|
||||
echo -e "\e[31mFAIL\e[39m"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
ensure_python_build_installed
|
||||
install_python "$ASDF_INSTALL_TYPE" "$ASDF_INSTALL_VERSION" "$ASDF_INSTALL_PATH"
|
||||
install_default_eggs
|
||||
|
|
Loading…
Reference in a new issue