配置环境变量
以下以Mac
系统为例介绍,Win或Linux请具体配置对应的环境变量。
首先进入bash.profile
文件,输入命令 vi ~/.bash_profile
,进行编辑文本模式。
配置sonar_scanner_home
、path
(路径换成你的sonarqube
与sonar-scanner
文件所在的绝对路径),以我的为例:
export SONAR_SCANNER_HOME=/Users/laughing/Downloads/sonar-scanner-4.6.0.2311-macosx
export PATH=$PATH:$SONAR_SCANNER_HOME/bin
退出文本编辑模式(按Esc
,输入:wq
),
配置生效
执行命令:
source ~/.bash_profile
使配置立即生效
测试sonar-scanner
是否安装成功
输入命令:
sonar-scanner -v
谢谢你