Troubles uninstalling oh-my-zsh?

I'm on OSX and want to switch back to my original zsh config from oh-my-zsh, however when I run the uninstall script it gives me an error:

$ sudo uninstall oh-my-zsh >> Preparing Uninstall... Uninstall Began... Uninstall Failed... Reason: ErrorMissingBundle 

Can anyone please tell me what this means? Thanks!

5 Answers

Have you tried just running the commands from uninstall script by hand? It's really straight forward: . For the most part it just removes OMZ and attempts to restore a back up file:

rm -rf ~/.oh-my-zsh rm ~/.zshrc cp ~/.zshrc.pre-oh-my-zsh ~/.zshrc source ~/.zshrc 
2

In new version, just run uninstall_oh_my_zsh from the command-line.

See

Try

/usr/bin/chsh -s /bin/bash rm ~/.zshrc brew uninstall zsh --force 

just run uninstall_oh_my_zsh
from here

0

simply use the following command:

/usr/bin/chsh -s /bin/bash 
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like