Command not found - Oh-My-Zsh

十年热恋 提交于 2019-12-03 02:49:58
Vítor Marçal

Just add:

source ~/.bash_profile

to .zshrc

Question:

➜ ~ mvn

zsh: command not found: mvn

Answer:

step 1:

    vim ~/.zshrc

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

    source ~/.bash_profile;

step 3:(Execution shell)

    > source ~/.bash_profile

You can use mvn :

➜ / mvn

[INFO] Scanning for projects... .......

I had a similar problem after installing oh-my-zsh, but for adb command. Looks like the PATH is shortened when oh-my-zsh is installed. I solved it using following steps.

  1. Open the .zshrc file

    sudo nano ~/.zshrc
    
  2. Look for # User configuration

    Un-comment the following line:

    export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"
    
  3. Save the file.

  4. source ~/.zshrc

Give this one a try for other similar command not found errors.

  • First, as 4ae1e1 pointed out, you missed the $ in PATH=$PATH:M2_HOME/bin
  • Second, don't forget to run source ~/.zshrc to take the settings into effect instantly.

Combining other answers I got adb working on mac and zsh appending these two path lines to .zshrc:

# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# this are for Android Studio adb:
export PATH=~/Android/sdk/tools:$PATH
export PATH=~/Android/sdk/platform-tools:$PATH
vi ~/.zshrc

add source ~/.bash_profile to ~/.zshrc file, after the line source $ZSH/oh-my-zsh.sh

open up a new terminal tab and execute mvn, and it will start working.

As mentioned by @4ae1e1 in his comment, $ have to be added before M2_HOME while referring it in the PATH variable, as follows:

export M2_HOME=/Applications/apache-maven-3.3.3
export PATH=$PATH:$M2_HOME/bin/

Once added, as others suggested, source the ~/.zshrc file.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!