tmuxの中でpyenvが効かない時
tmux上で何気なくpython --versionしてみたら,pyenvのバージョンと一致してないことに気づいた.
そんなときは,/etc/zshenvを下の通りに変更するとおk
# system-wide environment settings for zsh(1)
if [ -x /usr/libexec/path_helper ]; then
if [ -z "$TMUX" ]; then
eval `/usr/libexec/path_helper -s`
fi
fi