pycharm中怎么添加matplotlib模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pycharm中怎么添加matplotlib模块相关的知识,希望对你有一定的参考价值。
参考技术A 打开终端,就是Terminal那一页,在pycharm页面底下。输入pip install matplotlib,执行matplotlib----初探------1模块导入与运行
1.安装matplotlib库
cmd ->>> pip install matplotlib -i https://pypi.doubanio.com/simple
2.打开pycharm,进行第一个小例子的测试:
import matplotlib.pyplot as plt #导入模块 plt.plot([1,2,3,4],[-4,-3,-2,-1]) #输入作图的数据, plt.show() #显示图
3.结果如图所示
以上是关于pycharm中怎么添加matplotlib模块的主要内容,如果未能解决你的问题,请参考以下文章
from matplotlib import pyplot as plt 在pycharm上绘图不显示怎么办?(plt.show())