执行. .bash_profile
(或source ~/.bash_profile
) 似乎没有做任何事情。 (下面的.bash_profile;我在终端中没有看到回显“bash profile end”)。但是,如果我从 .bash_profile 复制粘贴行,它们就会起作用。
我正在运行交互式登录 shell,已尝试重新启动,但现在不知所措,不知道. .bash_profile
不会返回任何内容。 (此外,当我打开一个新终端时,.bash_profile 没有来源,但那是几个小时前的)。非常感激任何的帮助。
Mac 操作系统塞拉利昂。外壳:/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"