我对俾格特有意见。当我试图将它添加到pyCharm时,我会收到以下信息:
收集拟图 找不到满足要求的版本(来自版本:),没有找到匹配的版本
系统: Windows 7 64位,Python 3.63
发布于 2018-04-04 11:43:06
pyplot模块是matplotlib的一部分,因此您不能单独安装它。
正常安装matplotlib:
pip install matplotlib然后在您的代码中使用
import matplotlib.pyplot或更巧妙地:
import matplotlib.pyplot as plthttps://stackoverflow.com/questions/49649803
复制相似问题