15 lines
368 B
Bash
15 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}"
|
||
|
}
|