Welcome 微信登录

首页 / 操作系统 / Linux / Ubuntu下安装Gnuplot 4.6.0

Gnuplot是一个命令行的交互式绘图工具(command-driven interactive function plotting program)。用户通过输入命令,可以逐步设置或修改绘图环境,并以图形描述数据或函数,使我们可以借由图形做更进一步的分析。Gnuplot是由Colin Kelly和Thomas Williams于1986年开始开发的科学绘图工具,支持二维和三维图形。它的功能是把数据资料和数学函数转换为容易观察的平面或立体的图形,它有两种工作方式,交互式方式和批处理方式,它可以让使用者很容易地读入外部的数据结果,在屏幕上显示图形,并且可以选择和修改图形的画法,明显地表现出数据的特性。时序图的绘制—使用Gnuplot http://www.linuxidc.com/Linux/2014-08/104930.htmTpcc-MySQL测试并使用Gnuplot生成图表 http://www.linuxidc.com/Linux/2014-03/98566.htmRH442攻略之Gnuplot  http://www.linuxidc.com/Linux/2014-03/98405.htmUbuntu下应用Gnuplot进行数据的可视化 http://www.linuxidc.com/Linux/2011-12/50358.htm利用oprofile分析fortran并用Gnuplot画图的shell脚本 http://www.linuxidc.com/Linux/2011-04/34497.htm一、下载gnuplot4.6.0官网:http://www.gnuplot.info/二、解压文件将文件解压到/home/song/下三、配置安装路径cd gnuplot-4.6.0
./configure --prefix=/home/song/gnuplot四、编译安装make
make install五、配置环境变量sudo gedit /etc/profile将如下环境变量加入:export GNUPLOT=/home/song/gnuplot
export PATH=/home/song/gnuplot/bin:$PATH
export MANPATH=/home/song/gnuplot/share/man/man1:$MANPATH启用环境变量:source /etc/profile六、运行gnuplot更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2本文永久更新链接地址