GithubHelp home page GithubHelp logo

Comments (2)

oceancolorcoder avatar oceancolorcoder commented on June 1, 2024

New environment yaml committed f358e7d

Testing passed on Win11 22H2, MacOS Ventura 13.4, and Ubuntu 20.04. The latter OS was tested on two servers and one freestanding tower. One of the two linux servers still fails with:

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, minimal, minimalegl, offscreen, vnc, webgl, xcb.

Aborted (core dumped)

Setting

export QT_DEBUG_PLUGINS=1

...yields:

(test4b) daurin@gs616-analysis702:~/GitRepos/HyperInSPACE$ python Main.py
QFactoryLoader::QFactoryLoader() checking directory path "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms" ...
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqeglfs.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqeglfs.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"eglfs"
]
},
"archreq": 0,
"className": "QEglFSIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("eglfs")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqminimal.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqminimal.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"minimal"
]
},
"archreq": 0,
"className": "QMinimalIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("minimal")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqminimalegl.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqminimalegl.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"minimalegl"
]
},
"archreq": 0,
"className": "QMinimalEglIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("minimalegl")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqoffscreen.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqoffscreen.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"offscreen"
]
},
"archreq": 0,
"className": "QOffscreenIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("offscreen")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqvnc.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqvnc.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"vnc"
]
},
"archreq": 0,
"className": "QVncIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("vnc")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqwebgl.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqwebgl.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"webgl"
]
},
"archreq": 0,
"className": "QWebGLIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("webgl")
QFactoryLoader::QFactoryLoader() looking at "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqxcb.so"
Found metadata in lib /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqxcb.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
"Keys": [
"xcb"
]
},
"archreq": 0,
"className": "QXcbIntegrationPlugin",
"debug": false,
"version": 331520
}

Got keys from plugin meta data ("xcb")
QFactoryLoader::QFactoryLoader() checking directory path "/accounts/daurin/Applications/anaconda3/envs/test4b/bin/platforms" ...
Cannot load library /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqxcb.so: (libxcb-icccm.so.4: cannot open shared object file: No such file or directory)
QLibraryPrivate::loadPlugin failed on "/accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqxcb.so" : "Cannot load library /accounts/daurin/Applications/anaconda3/envs/test4b/plugins/platforms/libqxcb.so: (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, minimal, minimalegl, offscreen, vnc, webgl, xcb.

Aborted (core dumped)

from hypercp.

oceancolorcoder avatar oceancolorcoder commented on June 1, 2024

Resolved with df29c51

from hypercp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.