gnuplot 설치 후 새 터미널 유형을 추가하는 방법은 무엇입니까?

gnuplot 설치 후 새 터미널 유형을 추가하는 방법은 무엇입니까?

Ubuntu 14.04의 소스에서 gnuplot 5.0을 설치했습니다. Gnuplot이 작동 중이지만 아직은 작동하지 않습니다.서쪽그리고PNG단말기. 이제 이 터미널을 추가하고 싶습니다.

gnuplot>set terminal결과 출력은 다음과 같습니다

Available terminal types:
       canvas  HTML Canvas object
          cgm  Computer Graphics Metafile
      context  ConTeXt with MetaFun (for PDF documents)
        corel  EPS format for CorelDRAW
      domterm  DomTerm terminal emulator with embedded SVG
         dumb  ascii art for anything that prints text
          dxf  dxf-file for AutoCad (default size 120x80)
        eepic  EEPIC -- extended LaTeX picture environment
          emf  Enhanced Metafile format
        emtex  LaTeX picture environment with emTeX specials
     epslatex  LaTeX picture environment using graphicx package
          fig  FIG graphics language for XFIG graphics editor
         hpgl  HP7475 and relatives [number of pens] [eject]
        latex  LaTeX picture environment
           mf  Metafont plotting standard
           mp  MetaPost plotting standard
         pcl5  HP Designjet 750C, HP Laserjet III/IV, etc. (many options)
   postscript  PostScript graphics, including EPSF embedded files (*.eps)
      pslatex  LaTeX picture environment with PostScript \specials
        pstex  plain TeX with PostScript \specials
     pstricks  LaTeX picture environment with PSTricks macros
          qms  QMS/QUIC Laser printer (also Talaris 1200 and others)
          svg  W3C Scalable Vector Graphics
      tek40xx  Tektronix 4010 and others; most TEK emulators
      tek410x  Tektronix 4106, 4107, 4109 and 420X terminals
      texdraw  LaTeX texdraw environment
         tgif  TGIF X11 [mode] [x,y] [dashed] ["font" [fontsize]]
     tkcanvas  Tk canvas widget
         tpic  TPIC -- LaTeX picture environment with tpic \specials
Press return for more: 
          unknown  Unknown terminal type - not a plotting device
            vttek  VT-like tek40xx terminal emulator
            xterm  Xterm Tektronix 4014 Mode

어떡해?

답변1

소스에서 설치를 준비하려면 (Ubuntu 및 Debian에서) 를 실행하여 필요한 대부분의 패키지를 사용할 수 있어야 합니다 sudo apt build-dep <package>. 이 작업을 수행하려면 일부 deb-src ppa를 활성화하고 /etc/apt/sources.list실행하십시오 apt update. 저에게는 주석 태그를 제거하는 것만으로도 충분했습니다. 소스에서 빌드하려는 패키지에는 배포 ppa에서 사용할 수 없는 종속성이 필요한 기능이 있을 수 있습니다.

또한 일부 기능은 기본적으로 활성화되지 않으며 패키지가 이러한 기능을 제공하도록 구성된 경우에만 빌드할 수 있습니다. 일반적으로 우리는 를 실행하여 어떤 플래그를 사용해야 하는지 알아낼 수 있습니다 cd /path/to/src/; ./configure --help.

관련 정보