Ubuntu安装libgdiplus报错怎么办
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu安装libgdiplus报错怎么办相关的知识,希望对你有一定的参考价值。
参考技术A 在Ubuntu 14.04 LTS 64位系统中安装libgdiplus2.10.9的时候出现了错误。 首先下载libgdiplus2.10.9安装包 进入目录开始configure编译 。/configure --prefix=/usrmake 将libgdiplus安装在/usr目录下 发现在该操作系统报错了:如下 gdiplus-private.h:33:31: fatal error: freetype/tttables.h: No such file or directory #include ^compilation terminated.make[2]: *** [adjustablearrowcap.lo] Error 1make[2]: Leaving directory `/root/libgdiplus-2.10/src‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/root/libgdiplus-2.10’make: *** [all] Error 2root@ubuntu:~/libgdiplus-2.10# sudo ln -s /usr/X11/include/freetype2/freetype/ /usr/X11/include/freetypeln: failed to create symbolic link ‘/usr/X11/include/freetype’: No such file or directory 这个错误就是说创建/usr/X11/include/freetype链接失败了,因为找不到freetype 我们打开/usr/include看有没有freetype这个目录,没有吧,但是我们找到了freetype2,这样我们做个链接吧 ln -s /usr/include/freetype2 /usr/include/freetype 然后继续make发现错误如下: /usr/lib64/libglib-2.0.so.0: could not read symbols: Invalid operationcollect2: error: ld returned 1 exit statusmake[2]: *** [testgdi] Error 1make[2]: Leaving directory `/usr/local/src/libgdiplus-2.10.9/tests‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/usr/local/src/libgdiplus-2.10.9’make: *** [all] Error 2 解决方法: 先执行 。/configure 命令, 然后编辑 test/Makefile 文件;将 130 行的 LIBS = -lpthread -lfontconfig 改为 LIBS = -lpthread -lfontconfig -lglib-2.0 -lX11;再次执行 make 命令即可。 再次make,是不是很快成功了,ok,make install吧 上面就是Ubuntu安装libgdiplus时出错的解决方法,如果你在安装的时候系统报错了,可以尝试本文介绍的方法进行解决。【Ubuntu16.04】安装python3.6
参考技术Aubuntu16.04中默认安装了 python2.7 python3 python3.5.2 (注意 : 这两个版本不能删除/卸载,否则系统很容易出错)
如果出现报错 : add-apt-repository: command not found 这个是缺少程序,安装一下就可以了。
执行下面的指令:
然后再执行上面的指令
如果出现报错 : ERROR: \'xxx\' user or team does not exist.
主要由于 CA证书损坏 导致,重装一遍CA证书:
运行完,查看是否有python3.6
调整Python3的优先级,使得3.6优先级较高
更改默认值,python默认为Python2,现在修改为Python3
ok完成!
参考链接:
以上是关于Ubuntu安装libgdiplus报错怎么办的主要内容,如果未能解决你的问题,请参考以下文章