mirror of https://github.com/kianby/dotfiles
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
405 B
Cheetah
20 lines
405 B
Cheetah
# python
|
|
|
|
# pyenv
|
|
if [ -d "$HOME/.pyenv" ]; then
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
export PATH="$PYENV_ROOT/bin:$PATH" # if `pyenv` is not already on PATH
|
|
eval "$(pyenv init --path)"
|
|
eval "$(pyenv init -)"
|
|
fi
|
|
|
|
if [ -d "$HOME/.poetry/bin" ]; then
|
|
export PATH="$HOME/.poetry/bin:$PATH"
|
|
fi
|
|
|
|
if [ -f "{{ .extra_ca_cert }}" ]; then
|
|
export REQUESTS_CA_BUNDLE={{ .extra_ca_cert }}
|
|
fi
|
|
|
|
|