博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 安装maven提示出错 The program 'mvn' can be found in the following packages
阅读量:5290 次
发布时间:2019-06-14

本文共 1138 字,大约阅读时间需要 3 分钟。

问题:

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 * maven2Try sudo apt-get install 

解决方式例如以下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"
 

转载于:https://www.cnblogs.com/mfrbuaa/p/3903360.html

你可能感兴趣的文章
IIS Express 配置缓存位置
查看>>
单向链表
查看>>
Linux文件系统管理
查看>>
自己写的分页控件
查看>>
ContactsUtil 工具类 - 转载
查看>>
实验4-6:正弦动态圆
查看>>
docker 学习(五) virtualBox虚拟机安装docker
查看>>
Oracle企业管理框架
查看>>
HTML特效代码大全
查看>>
如何通过代码监控JVM的运行状态
查看>>
数据持久化的复习
查看>>
[YII2] COOKIE的操作使用
查看>>
raft学习
查看>>
JavaScript之属性操作及小例子
查看>>
《Paxos Made Simple》翻译
查看>>
URL传递中文:Server.UrlEncode与Server.UrlDecode
查看>>
apache----log_format配置
查看>>
汇编语言基础知识摘要(《汇编语言》王爽)第 2 / 17 章
查看>>
Android基于IIS的APK下载(一)自定义更新控件
查看>>
ubuntu 11.04侧边栏怎么添加图标
查看>>