Skip to content

Gnuplot Install #

Find similar titles

2회 업데이트 됨.

Edit
  • 최초 작성자
    Myunghee Jung
  • 최근 업데이트
    Duskan

Structured data

Category
Statistics

Gnuplot의 설치는 다음과 같이 source code를 다운로드 받은 후 압축을 해제하고 make하는 것으로 가능하다.

$ wget http://sourceforge.net/projects/gnuplot/files/gnuplot/5.0%20release%20candidates/gnuplot-5.0.2.tar.gz/download
$ tar zxvf gnuplot-5.0.2.tar.gz
$ ./configure && make && make install

Gnuplot을 실행 후 "set terminal"을 입력하면 출력 가능한 파일 포맷이 화면에 나타나는데 위와 같이 설치했을 경우 png, gif, jpeg 포맷으로의 저장이 불가능하다.

png, gif, jpeg 포맷으로 결과를 출력하기 위해서는 gd graphics 라이브러리가 필요하다.

$ ./configure --with-gd=[dir; ex)/usr/lib64/]
# compile시 --with-gd 커맨드를 이용하여 gd graphics 라이브러리의 위치를 설정

Incoming Links #

Related Data Sciences #

Suggested Pages #

0.0.1_20230725_7_v68