All checks were successful
/ job (push) Successful in 1m12s
new development branch from root commit
14 lines
368 B
Bash
14 lines
368 B
Bash
# ╭────────╮
|
|
# │ python │
|
|
# ╰────────╯
|
|
|
|
# ╭────────┬──────╮
|
|
# │ python │ venv │
|
|
# ╰────────┴──────╯
|
|
|
|
rwx_python_venv() {
|
|
local path="${1}"
|
|
[ -d "${path}" ] || return 1
|
|
export VIRTUAL_ENV="${path}" && \
|
|
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
|
}
|