安装 Apache Maven

Installing Apache Maven

在 windows 上,我正尝试按照 here 中的说明安装 Maven。声明 "Add the bin directory of the created directory apache-maven-3.3.9 to the PATH environment variable" 的步骤对我来说意义不大。请成功安装 Maven 的人解释一下这一步涉及的内容。我已经设置了 JAVA_HOME 环境变量。

Add the bin directory of the created directory apache-maven-3.3.9 to the PATH environment variable

这允许您从任何地方运行 mvn 命令。否则,您将不得不使用 mvn 命令的完整路径或 运行 它形成该目录。

在您提供的link中,有更明确的说明:

Adding to PATH: Add the unpacked distribution’s bin directory to your user PATH nvironment variable by opening up the system properties (WinKey + Pause), selecting the “Advanced” tab, and the “Environment Variables” button, then adding or selecting the PATH variable in the user variables with the value C:\Program Files\apache-maven-3.3.9\bin. The same dialog can be used to set JAVA_HOME to the location of your JDK, e.g. C:\Program Files\Java\jdk1.7.0_51

Open a new command prompt (Winkey + R then type cmd) and run mvn -v to verify the installation.

你试过吗?

将 maven bin 文件夹的路径添加到您的 windows PATH 变量中。这是一个图像参考。希望对您有所帮助。