无法在Mac OS上安装Maven。

huangapple go评论81阅读模式
英文:

Not able to install Maven in Mac OS

问题

在安装Maven时遇到了一些问题。
我已经在我的Bash配置文件中设置了路径。但是"mvn -version"命令仍然不起作用。

已下载了最新版本的Maven:
无法在Mac OS上安装Maven。

已将其添加到我的Bash配置文件中:

无法在Mac OS上安装Maven。

java -version可以工作。
但是mvn -version不能工作。

无法在Mac OS上安装Maven。

我漏掉了什么?

英文:

Facing some issue while installing Maven.<br/>
I have set the path in my Bash profile. Still "mvn -version" command doesn't work.

Downloaded latest version of maven:
无法在Mac OS上安装Maven。
<br/>

<br/>

Added it to my Bash profile:

无法在Mac OS上安装Maven。

java -version works. <br/>
But mvn -version doesn't.

无法在Mac OS上安装Maven。

What am I missing here???

答案1

得分: 2

macOS的Shell已从bash更改为zsh。

export很可能会显示您的配置设置未被读取,因为zsh使用不同于bash的配置文件。

请查阅man zsh以了解详细信息。您很可能需要将您的设置移动到~/.zshenv。然后在一个新的Shell中使用export来查看您的设置是否生效。

英文:

The MacOS shell has changed from bash to zsh.

export will most likely show that your configuration settings wasn't read as zsh uses different configuration files than bash.

Investigate man zsh to understand the details. You will most likely need to move your settings to ~/.zshenv. Again use export in a fresh shell to see that your settings are active.

huangapple
  • 本文由 发表于 2020年8月11日 09:35:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/63350267.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定