dev/python

This commit is contained in:
Marc Beninca 2025-07-27 17:19:40 +02:00
parent 1b1837dd79
commit 7dd1195225
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,14 +0,0 @@
# ╭────────╮
# │ python │
# ╰────────╯
# ╭────────┬──────╮
# │ python │ venv │
# ╰────────┴──────╯
rwx_python_venv() {
local path="${1}"
[ -d "${path}" ] || return 1
export VIRTUAL_ENV="${path}" &&
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
}