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.

24 lines
622 B
Cheetah

# -------------------------------------------------------------
# PYTHON
# -------------------------------------------------------------
[[ -s $HOME/.pythonz/etc/bashrc ]] && source $HOME/.pythonz/etc/bashrc
if [ -f "$HOME/.pythonz/pythons/CPython-3.9.9/bin/python" ]; then
export PATH="$HOME/.pythonz/pythons/CPython-3.9.9/bin:$PATH"
fi
if [ -f "$HOME/.pythonz/pythons/CPython-3.9.9/bin/pew" ]; then
source "$(pew shell_config)"
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