-
I have been trying to use paraview through conda in the Ubuntu terminal to visualize a _in.e file. Here is my error: qt.qpa.xcb: could not connect to display 10.255.255.254:0.0 Available platform plugins are: vkkhrdisplay, vnc, xcb, offscreen, minimal, linuxfb, eglfs, minimalegl. Does anyone know how to resolve this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hello For now you should simply install paraview on the windows side and use that. I think we recommended installing paraview from the paraview website on the Ubuntu side. This takes care of some missing dependencies in conda Guillaume |
Beta Was this translation helpful? Give feedback.
I was able to get it to work by running the following:
sudo apt install xterm
export DISPLAY=:1.0
xterm
The output was as follows:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
xterm is already the newest version (372-1ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
xterm: Xt error: Can't open display: :1.0
By running export DISPLAY=:0 this fixes the error I got in the output message. I can now run paraview through a conda environment and it will open a Linux GUI for Paraview.