plotnine:UserWarning:在主线程之外启动 Matplotlib GUI 可能会失败

plotnine: UserWarning: Starting a Matplotlib GUI outside of the main thread will likely fail

我正在尝试使用 plotnine 生成一些图表。我导入所需的库:

from plotnine import *
from plotnine.data import mpg

然后,如果我在 PyCharm 中 运行 以下代码 我收到一条警告消息, window 图 显示“无应答”消息,我被迫重新启动 python 终端:

(ggplot(mpg)         # defining what data to use
 + aes(x='class')    # defining what variable to use
 + geom_bar(size=20) # defining the type of plot to use
)

<ggplot: (150517199824)>
C:\Users\alvaromc317\miniconda3\envs\general\lib\site-packages\plotnine\ggplot.py:363: UserWarning: Starting a Matplotlib GUI outside of the main thread will likely fail.

但是,如果我从 windows cmd 终端和 运行 启动一个 python 终端和与以前相同的脚本,我不会收到任何错误消息,并且我看到的情节没有问题.

发生了什么以及如何在 pycharm 中使用 plotnine?

如果需要,我使用 Windows 10 机器和 python 3x 基于 miniconda 的机器。

我遇到了类似的问题,但在 MacOS 上使用 PyCharm 的商业添加。

this github issue and this JetBrains issue 看来,它可能与 PyCharm 错误有关。