我知道这似乎是一个重复的问题:
Matplotlib plot window appears on different desktop
但是我正在不同的环境上运行: Python 3.7.3 , matplotlib 3.0.3 , Visual Studio Code v1.33.0 ,以及 macOS High Sierra 10.13.6 。
我正在全屏使用 Visual Studio代码,并且正在尝试运行代码,例如
import matplotlib.pyplot as plt
plt.plot([10,11,12], [13,14,15])
plt.show()
我希望让matplotlib绘图窗口显示在我的 Visual Studio Code 窗口的前面(这样可以更快地分析它们),但它们却显示在另一个桌面上。
我已经搜索了其文档,但尚未(尚未)找到与该绘图位置相关的任何功能。可以这样做吗?先前问题中接受的解决方案无法正常工作,因为我的Mac无法将我的 Visual Studio代码窗口识别为桌面(Ctrl-#命令未检测到它)。