当前位置:网站首页>Install pyqt5 and Matplotlib module
Install pyqt5 and Matplotlib module
2022-07-07 09:21:00 【Give you a little moon】
install PyQT5 And installation matplotlib modular
Preface
Previous blogs talked about how to install Python, Today's essay is based on the book , Share about PyQT5 Installation of and related modules , In order to facilitate each family to study PyQT5, It is convenient to write automated testing tools or understand this tool , So share this process !
Welcome to one button and three links , Pay attention, like to walk a wave (づ ̄ 3 ̄)づ
One 、 install PyQt5
install pyQT5 There are two ways
1. download PyQT5 Compile and install the latest source code of ( More trouble )
2. Use pip install Online installation ( The following describes this method )
=========================================================================
| pip install PyQT5 -i https://pypi.douban.com/simple |
Be careful :
1. because Python The image used for installing the module is foreign by default , Due to network problems , Download foreign Python Modules often fail to download , So you need to use the domestic image download Python modular .
2. If prompted, I don't know install situation , Access to Scripts Directory . Such as D:\Users\xxx\AppData\Local\Programs\Python\Python39\Scripts
Then use the above installation instructions
pyQt5.9 No longer provide commonly used QT Tools , For example, graphical interface development tools QT Designer、 International translation tools Liguist, Therefore, you also need to use the following commands to install commonly used QT Tools
| pip install PyQt5-tools -i https://pypi.douban.com/simple |
Be careful :
1. Because the blogger seems to have failed to install due to network problems in this step , Therefore, it has been updated in the process pip, Then install PyQt5-tools, Such as :python -m pip install --upgrade pip
Two 、 To configure PyQT5 Environment variables of
In order to make Windows The system can correctly identify PyQt5-tools Common commands , You need to put PyQt5-tools The installation directory of is added to the system environment variable Path in . Right click on the desktop “ My computer ”, Pop up the shortcut menu , choice “ attribute ”—>“ Advanced system setup ”——>“ senior ”, single click “ environment variable ” Button , In system variable Path Add the following variable values to ,
Such as :D:\Users\xxx\AppData\Local\Programs\Python\Python39\Lib\site-packages\pyqt5_tools
notes : This path is for bloggers to install PyQt5-tools The location of , Please revise it according to the actual situation 

* Check whether the configuration is successful & test PyQt5 Environment installed successfully
1. Check whether the configuration is successful : Use Win+R Shortcut key , Enter... In the query box cmd, Enter into Windows Command window for , Input Path command , If everything goes well , Will be returned in Path See in path PyQT5-tools Installation path for , As shown in the figure below :
2. test PyQt5 Environment installed successfully : The file named testPyQt.py,py by Python Extension . The complete code is as follows :
import sys
from PyQt5 import QtWidgets,QtCore
app = QtWidgets.QApplication(sys.argv)
widget = QtWidgets.QWidget()
widget.resize(360,360)
widget.setWindowTitle(“hello,pyqt5”)
widget.show()
sys.exit(app.exec_())
stay windows In the system , double-click testPyQT.py file , If no error is reported , The following image interface pops up , shows PyQt5 Environment installed successfully

3、 ... and 、 install matplotlib modular
Enter the following command :
| pip3 install matplotlib -i https://pypi.douban.com/simple |

==================== Thank you for watching. , Welcome to one button and three links (●’◡’●)============》END
Reference books :PyQt 5 Rapid development and actual combat
边栏推荐
- Locust performance test 2 (interface request)
- [chaosblade: node CPU load, node network delay, node network packet loss, node domain name access exception]
- Leetcode question brushing record (array) combination sum, combination sum II
- Sublime Text4 download the view in bower and set the shortcut key
- What is the rating of Huishang futures company? Is it safe to open an account? I want to open an account, OK?
- Locust performance test 5 (analysis)
- Regular matching starts with XXX and ends with XXX
- NVIC interrupt priority management
- Integer or int? How to select data types for entity classes in ORM
- C语言指针(特别篇)
猜你喜欢

外部中断实现按键实验

Port multiplexing and re imaging

Jmeters use

2020 year end summary

Mysql database lock learning notes

Postman setting environment variables

The essence of high availability

Do you have any certificates with high gold content?

Mysql database index study notes

Cesium does not support 4490 problem solution and cesium modified source code packaging scheme
随机推荐
C语言指针(特别篇)
Cesium load vector data
Leetcode question brushing record (array) combination sum, combination sum II
浏览器中如何让视频倍速播放
Original collection of hardware bear (updated on May 2022)
The use of recycling ideas
Serializer & modelserializer of DRF serialization and deserialization
Interview question: general layout and wiring principles of high-speed PCB
Jmeters use
C语言指针(习题篇)
Systick tick timer
Skill review of test engineer before interview
C language pointer (exercises)
【Istio Network CRD VirtualService、Envoyfilter】
Sublime Text4 download the view in bower and set the shortcut key
[chaosblade: node disk filling, killing the specified process on the node, suspending the specified process on the node]
Jenkins automated email
串口實驗——簡單數據收發
Zen - batch import test cases
Idea development environment installation