以下代码运行时没有错误,但不显示可能的问题:
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
squares = [1,4,9,16,25]
plt.plot(squares)
plt.show()
刚开始使用matplotlib尝试运行简单的代码,期望显示器显示图,但它只是运行,没有发生任何事情,测试了几个后端,如Qt5agg,仍然没有任何结果
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
squares = [1,4,9,16,25]
plt.plot(squares)
plt.show()
刚开始使用matplotlib尝试运行简单的代码,期望显示器显示图,但它只是运行,没有发生任何事情,测试了几个后端,如Qt5agg,仍然没有任何结果
1条答案
按热度按时间eqoofvh91#
看起来问题不在于代码本身,而在于matplotlib的安装。我相信我可能安装了与我的python版本不兼容的matplotlib,这可能损坏了python文件,因为即使pygame也不再带出图形显示。我安装了python的更新版本,删除了以前的版本,我也删除了麻烦的matplotlib和pygame,重新安装了它们,之后一切都很好