Command not found - Oh-My-Zsh

前端 未结 12 911
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-25 11:54

I recently installed zsh and oh-my-zsh in my Mac. Now when I try to run a maven command from the terminal, I am getting the following error.

$ mvn install
zs         


        
12条回答
  •  天涯浪人
    2020-12-25 12:47

    step 1:

    vim ~/.zshrc
    

    step 2:(Add at the end of the file)

    source ~/.bash_profile;
    

    step 3 : (Save changes in Vim)

     :wq!
    

    step 4:(Execution shell)

    > source ~/.bash_profile
    

提交回复
热议问题