Browse Source

Alias python to python3

master
Taylor Bockman 4 years ago
parent
commit
24ddb969a8
  1. 4
      dotfiles/bash/bash_profile

4
dotfiles/bash/bash_profile

@ -1,7 +1,7 @@
[[ -r ~/.bashrc ]] && . ~/.bashrc
echo ".bashrc loaded"
# Store private information (exports, keys, etc) in .bash_private.
# Store private information (exports, keys, etc) in .bash_private.
[[ -r ~/.bash_private ]] && . ~/.bash_private
echo ".bash_private loaded"
@ -9,5 +9,7 @@ export CC=$(which clang)
export CXX=$(which clang++)
export OPENSSL_ROOT_DIR=$(which openssl)
alias python='python3'
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi

Loading…
Cancel
Save