pyqtgraph安装【pyqt界面设计绘图】

版权声明:本文为博主原创文章,转载请注明作者和出处。https://blog.csdn.net/xq920831/article/details/97917886

参考官方:https://github.com/pyqtgraph/pyqtgraph

1. pip安装

直接cmd 输入: pip install pyqtgraph

2. github源代码安装

官方链接克隆代码: git clone https://github.com/pyqtgraph/pyqtgraph 

解压后,当前路径cmd,输入:python setup.py install 

3.其他安装方法

  • Anaconda: conda install pyqtgraph
  • linux: apt install python-pyqtgraph
  • windows: 在pyqtgraph官网顶部下载exe安装程序

安装完成后

运行两行代码:

import pyqtgraph.examples

pyqtgraph.examples.run()

弹出对话框:

pyqtgraph安装【pyqt界面设计绘图】_第1张图片

任意双击左侧示例,查看运行结果(例如:双击Basic Plotting)

pyqtgraph安装【pyqt界面设计绘图】_第2张图片

剩下的就是自己研究了,根据个人需求和相关示例实现。

你可能感兴趣的:(python语言相关知识)