昨晚我升级到了小牛队,唯一破坏的就是bash中的powerline。所以我尝试按照说明重新安装它,但是出现了一些错误。
它仍然可以在vim,ipython中运行,如预期的那样。
然而,bash给了我错误:
bash: powerline: command not found
我按照the documentation中的说明进行设置,将以下行放入我的.bash_profile:
. /Users/USERNAME/Library/Python/2.7/lib/python/site-packages/powerline/bindings/bash/powerline.sh
有关如何解决此问题的任何想法?
答案 0 :(得分:2)
感谢电话问题跟踪器上的Rafacas。
https://github.com/Lokaltog/powerline/issues/685#issuecomment-28494806
通过将以下内容添加到我的.bash_profile中,电力线已修复。
if [ -d "$HOME/Library/Python/2.7/bin" ]; then
PATH="$HOME/Library/Python/2.7/bin:$PATH"
fi