我在Ubuntu14.04中使用源代码安装了gnuket5.0。Gnuplot正在工作,但还没有wxt和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我能做什么?
发布于 2018-08-07 08:41:07
为了准备从源代码中安装,大多数必需的包应该通过运行sudo apt build-dep <package> (在Ubuntu和Debian中)可用。为了使此工作,在/etc/apt/sources.list中启用一些deb并运行apt update。对我来说,删除一些注释标记就足够了。请注意,您想要从源代码构建的包中可能有一些特性需要ppa发行版中不可用的依赖关系。
此外,某些特性在默认情况下不启用,只有在将包配置为提供它们时才能生成。通常,人们可以发现运行cd /path/to/src/; ./configure --help必须使用哪些标志。
https://unix.stackexchange.com/questions/388455
复制相似问题