Using matplotlib with Python2.7 on WSL2 and VcXsrv throws a pygtk ImportError when running a basic script.
# test_graph.py
try:
import customplot as cp
nums = [5, 15, 25]
cp.display_chart(nums)
except ImportError as err:
print('Error: Required module missing', err)