Mac 터미널이 .bash_profile을 실행할 수 없습니다.

Mac 터미널이 .bash_profile을 실행할 수 없습니다.

실행 . .bash_profile(또는 source ~/.bash_profile)은 아무 것도 하지 않는 것 같습니다. (아래 .bash_profile; 터미널에 "bash profile end"가 표시되지 않습니다.) 그러나 .bash_profile의 행을 복사하여 붙여넣으면 작동합니다.

대화형 로그인 셸을 실행 중이고 재부팅을 시도했지만 이제 . .bash_profile반환되는 항목이 무엇인지 알 수 없습니다. (또한 새 터미널을 열었을 때 .bash_profile에 소스가 없었지만 몇 시간 전이었습니다). 어떤 도움이라도 대단히 감사하겠습니다.

맥 OS 시에라. 쉘: /bin/bash/ 경로:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Library/TeX/texbin

# Colors and styles
# export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1 
export LSCOLORS=ExFxBxDxCxegedabagacad 
alias ls='ls -GFh'
# -G == colorize output, -h size human readable, -F {/ after directory, * after executable, @ after symlink}

# Move homebrew's usr/local/bin ahead of /usr/bin
# export PATH=/usr/local/bin:/usr/local/sbin:~/bin:$PATH

# Add homebrew directory
export PATH=/usr/local/bin:/usr/local/sbin:$PATH

# virtualenvwrapper
export WORKON_HOME=~/.envs
export VIRTUALENVWRAPPER_PYTHON=/usr/local/Cellar/python3/3.6.2/bin/python3
export VIRTUALENVWRAPPER_VIRTUALENV=/usr/local/bin/virtualenv
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
source /usr/local/bin/virtualenvwrapper.sh

echo "bash profile end"

관련 정보