首页 > 代码库 > ubuntu 安装maven提示出错 The program 'mvn' can be found in the following packages
ubuntu 安装maven提示出错 The program 'mvn' can be found in the following packages
问题:
I am trying to install apache maven 3 in Ubuntu 12.04 lts. What I did was open the terminal then I typed the following commands
- export M2_HOME=/usr/local/apache-maven/apache-maven-3.0.5 [Then pressed Enter]
- export M2=$M2_HOME/bin [Then pressed Enter]
- export PATH=$M2:$PATH [Then pressed Enter]
After that I typed
mvn --version
and it displayed all the necessary information but after closing the terminal, again I typed the command mvn --version
The program ‘mvn‘ can be found in the following packages:
* maven
* maven2
Try sudo apt-get install <selected-page>
解决方案如下http://askubuntu.com/questions/310059/ubuntu-adding-path-environment-variables
问题是在环境里面添加了PATH,但是需要
$source /etc/environment
然后mvn --vsersion
xx@xxx:/usr/local$ mvn --versionApache Maven 3.2.2 (45f7c06d68e745d05611f7fd14efb6594181933e; 2014-06-17T21:51:42+08:00)Maven home: /usr/local/apache-maven-3.2.2Java version: 1.7.0_55, vendor: Oracle CorporationJava home: /usr/lib/jvm/java-7-openjdk-amd64/jreDefault locale: en_US, platform encoding: UTF-8OS name: "linux", version: "3.13.0-29-generic", arch: "amd64", family: "unix"
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。