Command-Line
命令行中的電力線錯誤
我
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
.嘗試執行以下操作:
- 找到
powerline.sh
呼叫的地方:#> grep "powerline.sh" .bash* .profile .bashrc:POWERLINE_BASH=/usr/share/powerline/bindings/bash/powerline.sh .bashrc: powerline-daemon -q;
在這裡,它位於
.bashrc
. 2. 使用文本編輯器打開它所在的文件並將其刪除。就是這樣,伙計們。