Reputation: 81
i've uninstalled ohmyzsh and now everytime i start my termial it says this:
Last login: Sat Feb 6 13:53:16 on ttys001
/Users/nicholas/.zshrc:source:75: no such file or directory: /Users/nicholas/.oh-my-zsh/oh-my-zsh.sh
nicholas@macbook ~%
How to fix it?
(original screenshot here)
Upvotes: 7
Views: 42880
Reputation: 11
move source $ZSH/oh-my-zsh.sh
after the path variable. So it looks like below. save and reopen terminal.
export ZSH="/Users/<username>/.oh-my-zsh"
export PATH=$HOME/bin:/usr/local/bin:$ZSH:$PATH
source $ZSH/oh-my-zsh.sh
Upvotes: 1
Reputation: 96
Upvotes: 8
Reputation: 421
Upvotes: -1