在Ubuntu(Linux的Windows子系统)中显示matplotlib图-Python 3

时间:2018-06-26 19:16:33

标签: python python-3.x matplotlib ubuntu-14.04 windows-subsystem-for-linux

我按照下面链接到该字母的问题中的答案回答,它在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)

0 个答案:

没有答案