Skip to content

Instantly share code, notes, and snippets.

View ZhangChen199102's full-sized avatar

Chen ZhangChen199102

View GitHub Profile
@ZhangChen199102
ZhangChen199102 / .direnvrc
Last active April 1, 2024 03:48
Setup direnv + pyenv + pyenv-virtualenv
# use a certain pyenv version
use_python() {
if [ -n "$(which pyenv)" ]; then
local pyversion=$1
pyenv local ${pyversion}
fi
}
layout_virtualenv() {
local pyversion=$1