1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-23 01:28:32 +02:00
dotfiles/functions/python.zsh

Failed to ignore revisions in .git-blame-ignore-revs.

83 lines
2.2 KiB
Bash
Raw Permalink Normal View History

2022-04-29 11:16:39 +02:00
mkvenv(){
local source_venv force_create venv_name
while getopts "sf" opt; do
case $opt in
s|source) source_venv=y ;;
f|force) force_create=y ;;
*) echo "Unknown option: $opt"; return 1 ;;
esac
done
shift $(($OPTIND-1))
if [[ -n $1 ]]; then
venv_name=$1
2022-05-03 10:16:05 +02:00
shift
2023-11-11 18:54:40 +01:00
else
venv_name=.venv
2022-04-29 11:16:39 +02:00
fi
# any other arguments are passed on to the `venv` module as flags/arguments
2023-11-11 18:54:40 +01:00
if [[ -e ${venv_name} ]]; then
if [[ -n ${force_create} ]]; then
if [[ -n $VIRTUAL_ENV ]]; then # deactivate venv if enabled
2023-11-11 18:54:40 +01:00
deactivate && warning "Deactivated existing virtualenv" || red "Could not run deactivate";
fi
2023-11-11 18:54:40 +01:00
rm -rf ${venv_name} && warning "Deleted existing virtualenv."
else
2023-11-11 18:54:40 +01:00
error "$(color $BOLD .venv) already exists. Run with -f to recreate it." >&2
return 1
fi
2022-04-29 11:16:39 +02:00
fi
2022-05-03 10:16:05 +02:00
2023-11-11 18:54:40 +01:00
info "Creating virtualenv ${venv_name}... "
if ! python -m virtualenv $@ ${venv_name} ; then
error "Failed to create virtualenv. Is virtualenv installed? Try:\n $ pip install virtualenv"
return 1
fi
2022-04-29 11:16:39 +02:00
if [[ -z ${source_venv} ]]; then
echo -n " done. Enable? [Y/n] "
2022-04-29 11:16:39 +02:00
read source_venv
2022-05-03 10:16:05 +02:00
else
echo ""
2022-04-29 11:16:39 +02:00
fi
if [[ $source_venv != "n" ]]; then
2023-11-11 18:54:40 +01:00
source ${venv_name}/bin/activate && \
echo -e "$(color $BOLD Enabled!) 🐍 $(color $BOLD$PURPLE $(python --version | cut -d " " -f2 )) ($(color $BOLD$GREEN $(pip --version | cut -d " " -f -2)))"
2022-04-29 11:16:39 +02:00
fi
}
function enable_venv() {
local root
local activate
root=$(git rev-parse --show-toplevel 2>/dev/null)
if [[ -z $root ]]; then root=$PWD; fi
activate="$root/.venv/bin/activate"
if [[ -f "$activate" ]]; then
source "$activate"
fi
}
function disable_venv() {
if [[ -z ${VIRTUAL_ENV} ]]; then
return
fi
if [[ ! "$PWD" =~ $(dirname $VIRTUAL_ENV)}* ]]; then
echo "Deactivating venv..."
deactivate
fi
}
if [[ -n $DOTFILES_AUTOSWITCH_VIRTUALENV ]]; then
add-zsh-hook chpwd enable_venv
add-zsh-hook chpwd disable_venv
enable_venv
fi