I installed Conda onto (Mate)Ubuntu 22.04 X86_64. I have a Python script that looks like this:
Code:
import matplotlib.pyplot as plt
plt.plot([0,0,1,1],[0,-1/3,-1/3,0])
When I run that script, then I get an error message that looks like this:
Code:
qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
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.
Aborted (core dumped)
What is the recommended procedure to get
Code:
import matplotlib.pyplot as plt
to function using Conda on Ubuntu 22.04?
For the record, the question that I am now posing is more or less a direct reformulation of the question that I posed some 17 hours earlier at Stack Overflow:
https://stackoverflow.com/questions/...in-conda-on-ub