[Linux]docker拉取的Centos8命令行界面(无GUI)通过Xmanager5运行Python程序显示matplolib图片

能够在最小化安装的Centos8显示matplotlib图片

#centos8服务端安装Xterm终端模拟器
yum install xterm
# 在客户端Xstart建立连接,在命令那一块输入
/usr/bin/xterm -ls -display $DISPLAY
yum install PyQt5
python test.py # test.py见下文

在这里插入图片描述

测试程序test.py:

import numpy as np
import matplotlib as plt
import matplotlib
matplotlib.use('Qt5Agg') # 必需
x = np.arange(1,20,2)
y = np.arange(1,20,2)
plt.plot(x, y,'bo')
plt.show()

若报错:

qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

则在终端输入:

export QT_DEBUG_PLUGINS=1
python test.py

接下来会显示详细报错

(libxcb-icccm.so.4: cannot open shared object file: No such file or directory)"
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, xcb.
Aborted (core dumped)

网上说可以缺什么安什么,事实不太可行,比如这个libxcb-icccm.so.4便无法安装。

解决办法

sudo dnf install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/xcb-util-wm-0.4.1-12.el8.x86_64.rpm
sudo dnf install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/xcb-util-image-0.4.0-9.el8.x86_64.rpm
sudo dnf install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/xcb-util-keysyms-0.4.0-7.el8.x86_64.rpm
sudo dnf install http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/xcb-util-renderutil-0.3.9-10.el8.x86_64.rpm

参考链接:

https://forum.qt.io/topic/122538/centos-8-qt-dependancy-install-issue/3

此时:

python test.py

可以正常运行。

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值