标签:frame pac att inux python2 默认 bash 使用 lib
本地mac的终端已经设置python版本为python3.7, 结果进入tmux时,一直时python2.7.
# 本地.bash_profile
alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python"
检查匹配发现
set-option -g default-command 'exec reattach-to-user-namespace -l zsh'
原来 tmux 之前使用设置了zsh. 忘记了....
改回来:
set-option -g default-command 'exec reattach-to-user-namespace -l bash'
或者去修改zsh的默认设置(.zshrc)吧.
标签:frame pac att inux python2 默认 bash 使用 lib
原文地址:https://www.cnblogs.com/abeen/p/11196408.html