I have followed the answer in the question linked below to the letter, and it works beautifully in Python 2, but I need this to work with Python 3 also. I can't seem to get matplotlib to play nicely in Python 3.
import matplotlib.pyplot as plt
import numpy as np
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2*np.pi*t)
plt.plot(t, s)
And here is the output I get:
OMP: Error #100: Fatal system error detected.
OMP: System error #22: Invalid argument
[1] 5245 abort (core dumped) python
Show matplotlib plots in Ubuntu (Windows subsystem for Linux)