当前位置:网站首页>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
边栏推荐
- Connecting mobile phone with ADB
- Implementation of corner badge of Youmeng message push
- STM32的时钟系统
- When inputting an expression in the input box, an error is reported: incorrect string value:'\xf0\x9f... ' for column 'XXX' at row 1
- PMP experience learning and sharing process
- How can I apply for a PMP certificate?
- JVM garbage collection detailed learning notes (II)
- How does the project manager write the weekly summary and weekly plan?
- Some pit avoidance guidelines for using Huawei ECS
- Do you have any certificates with high gold content?
猜你喜欢
Register address name mapping
Postman setting environment variables
Zen - batch import test cases
Mysql database index study notes
How to use Arthas to view class variable values
2021 year end summary
Jemter operation
Expérience de port série - simple réception et réception de données
Error: selenium common. exceptions. WebDriverException: Messag‘geckodriver‘ execute
Storage of data in memory
随机推荐
串口实验——简单数据收发
NVIC中断优先级管理
Mysql database transaction learning notes
Simulation volume leetcode [general] 1557 The minimum number of points that can reach all points
How to use Arthas to view class variable values
Mysql数据库-锁-学习笔记
信息安全实验一:DES加密算法的实现
Locust performance test 3 (high concurrency, parameter correlation, assembly point)
On December 8th, 2020, the memory of marketing MRC application suddenly increased, resulting in system oom
Pycharm create a new file and add author information
Interface test API case, data and interface separation
Postman setting environment variables
串口實驗——簡單數據收發
Druid monitoring - Introduction to JMX usage and principle
Variable parameter of variable length function
Where is the answer? action config/Interceptor/class/servlet
MySQL master-slave delay solution
C language pointer (Part 1)
C语言指针(中篇)
二叉树高频题型