我按照下面链接到该字母的问题中的答案回答,它在Python 2中可以很好地工作,但是我也需要在Python 3中使用它。我似乎无法让matplotlib在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)
这是我得到的输出:
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)