新的SHELL已经使用pathmunge ()函数进行PATH定义,按照GO语言官方文档安装完GO之后,直接在PROFILE文件的# Path manipulation中定义GO语言PATH即可。
# Path manipulation
if [ "$EUID" = "0" ]; then
pathmunge /usr/sbin
pathmunge /usr/local/sbin
pathmunge /usr/local/go/bin
else
pathmunge /usr/local/go/bin after
pathmunge /usr/local/sbin after
pathmunge /usr/sbin after
fi
其中pathmunge /usr/local/go/bin、pathmunge /usr/local/go/bin after为手工添加部分。
之后使用source /etc/profile 命令使/etc/profile立即生效。
使用echo $PATH对PATH进行查看,如下:
[birdofprey@AkBirdofprey ~]$ echo $PATH
/usr/lib/ccache:/usr/local/bin:/usr/bin:/bin:/usr/local/go/bin:/usr/local/sbin:/usr/sbin:/home/birdofprey/.local/bin:/home/birdofprey/bin
发现GO语言环境变量已经生效。呵呵,不用再用以前的export进行环境变量定义了。
阅读(568) | 评论(1) | 转发(0) |