Command-Line

命令行中的電力線錯誤

  • September 21, 2017

powerline是這樣安裝的:

pip install --user powerline-status
pip install --user git+git://github.com/powerline/powerline

之後我將其解除安裝,但每次打開終端時都會出現此錯誤:

/Library/Python/2.7/lib/python/site-packages/powerline/bindings/bash/powerline.sh: No such file or directory

我該如何解決?

正如 nikolas 所說,這很可能是您~/.profile或您的~/.bashrc文件需要powerline.sh.

嘗試執行以下操作:

  1. 找到powerline.sh呼叫的地方:
#> grep "powerline.sh" .bash* .profile
.bashrc:POWERLINE_BASH=/usr/share/powerline/bindings/bash/powerline.sh
.bashrc:    powerline-daemon -q;

在這裡,它位於.bashrc. 2. 使用文本編輯器打開它所在的文件並將其刪除。

就是這樣,伙計們。

引用自:https://unix.stackexchange.com/questions/370153