Vscode使用matplotlib显示图像
Ctrl+shift+P用户设置
可以直接搜索用户设置
搜索Theme Matplotlib Plots
打勾操作
显示图像
简单代码
import numpy as npimport matplotlib.pyplot as pltX = np.linspace(-np.pi, np.pi, 256, endpoint=True)C,S = np.cos(X), np.sin(X)plt.plot(X,C)plt.plot(X,S)plt.show()
运行之后可能显示文字
所以勾选文字左边的 “”
选择更改演示文稿
选择image/png即可
最终效果如下: