Introduction
i’m really fun of every thing cli related, also i like github, i try to do everything i can inside the terminal, it’s in thins context that i tried to reinstall gitsome, the things is that the default command pip3 install gitsome
work properly on linux without the need to search/install a fix, know i tried to run the same command on macOS, install finish properly but when i try to run xonsh
, i get:
... /site-packages/xonsh/main.py", line 404, in main ...
i tried many thing:
- install dircolor, install
coreutils
add `eval $(gdircolors -b $HOME/.dircolors) - brew install zsh-syntax-highlighting
- manually add
zsh-syntax-highlighting-filetypes.zsh
but nothing work, after all of that and reading the error, i concluded that it should be in error on xonsh
which is a dependency for gitsome.
How i resolve it
as i concluded that it must be an error on xonsh
, i googled xonsh macos mojave
ang i got a link that helped me resolve the problem, the command to fix
pip3 install xonsh gnureadline prompt-toolkit
also for sake of convenience, i run brew install bash-completion2
after running brew uninstall bash-completion
Coments