热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python程序转换为EXE文件:详细解析.py脚本打包成独立可执行文件的方法与技巧

在开发了几个简单的爬虫Python程序后,我决定将其封装成独立的可执行文件以便于分发和使用。为了实现这一目标,首先需要解决的是如何将Python脚本转换为EXE文件。在这个过程中,我选择了Qt作为GUI框架,因为之前对此并不熟悉,希望通过这个项目进一步学习和掌握Qt的基本用法。本文将详细介绍从.py脚本到EXE文件的整个过程,包括所需工具、具体步骤以及常见问题的解决方案。

前言

最近做了几个简单的爬虫python程序,于是就想做个窗口看看效果。

首先是,窗口的话,以前没怎么接触过,就先考虑用Qt制作简单的ui。这里用前面sinanews的爬虫脚本为例,制作一个获取当天sina头条新闻的窗口。

生成py文件后,运行该py文件,这里窗口我只是随便拖了几个组件进去,主要的text browser用于显示获取到的sinanews。

首先贴一下我的配置

官方下载:

PyQt5-5.2.1 for Py3.3(当安装完Python3.3后,安装对应PyQt,其会找到Python安装目录,不用更改安装目录)

本地下载:

PyQt5-5.2.1 for Py3.3(当安装完Python3.3后,安装对应PyQt,其会找到Python安装目录,不用更改安装目录)

Python3.3默认是没有安装pip的,需要下载get-pip.py运行之后,提示安装成功。

接下来就要安装一些必要的组件了。为了安装方便,先把pip添加进环境变量。

下面我们就可以用pip命令安装组件了。

先把sina_news.py贴出来,观察需要哪些组件。

1

2

3

4

5

6

7

8

9

10

11

12

import requests

from bs4import BeautifulSoup

res= requests.get('http://news.sina.com.cn/china/')

res.encoding= 'utf-8'

soup= BeautifulSoup(res.text,'html.parser')

for newsin soup.select('.news-item'):

if len(news.select('h2')) >0:

h2= news.select('h2')[0].text

a= news.select('a')[0]['href']

time= news.select('.time')[0].text

print(time,h2,a)

发现import requests,import BeautifulSoup 所以先来安装这些组件

1

2

3

pip install requests

pip install BeautifulSoup4

当我们把这段代码贴进窗口代码后:

x.py

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'x.ui'

#

# Created by: PyQt5 UI code generator 5.8.1

#

# WARNING! All changes made in this file will be lost!

import sys

import requests

from PyQt5import QtCore, QtGui, QtWidgets

from bs4import BeautifulSoup

class Ui_x(object):

def getNews():

res= requests.get('http://news.sina.com.cn/china/')

res.encoding= 'utf-8'

soup= BeautifulSoup(res.text,'html.parser')

title= []

for newsin soup.select('.news-item'):

if len(news.select('h2')) >0:

h2= news.select('h2')[0].text

title.append(h2)

a= news.select('a')[0]['href']

time= news.select('.time')[0].text

return '\n'.join(title)

def setupUi(self, x):

x.setObjectName("x")

x.resize(841,749)

self.timeEdit= QtWidgets.QTimeEdit(x)

self.timeEdit.setGeometry(QtCore.QRect(310,10,141,31))

self.timeEdit.setObjectName("timeEdit")

self.dateEdit= QtWidgets.QDateEdit(x)

self.dateEdit.setGeometry(QtCore.QRect(100,10,191,31))

self.dateEdit.setObjectName("dateEdit")

self.textBrowser= QtWidgets.QTextBrowser(x)

self.textBrowser.setGeometry(QtCore.QRect(60,80,701,641))

self.textBrowser.setObjectName("textBrowser")

self.retranslateUi(x)

QtCore.QMetaObject.connectSlotsByName(x)

def retranslateUi(self, x):

_translate= QtCore.QCoreApplication.translate

x.setWindowTitle(_translate("x","x"))

if __name__== '__main__':

app= QtWidgets.QApplication(sys.argv)

Form= QtWidgets.QWidget()

ui= Ui_x()

ui.setupUi(Form)

Form.show()

ui.textBrowser.setText(Ui_x.getNews())

sys.exit(app.exec_())

如果前面顺利的话,现在用python运行x.py应该能看到显示的窗口。

下面就是打包的过程了,这里笔者用的Pyinstaller,没有安装的话,要安装一下:

1

pip install pyinstaller

安装完成后,cmd路径cd到x.py所在目录。

打包命令:

1

Pyinstaller-w x.py

此时,在x.py便生成dist文件夹,打包的x.exe就在此文件夹下。双击x.exe显示效果:

1-20092509531O55.jpg

当然还有许多改进的地方,比如在上面选择日期,获得指定日期的头条新闻。

笔者在这片博文主要介绍py文件的打包过程。

可能遇到的问题:

打开打包后的程序无法运行显示:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

ImportError: No module named 'queue'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "test.py", line 2, in

File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module

exec(bytecode, module.__dict__)

File "site-packages\requests\__init__.py", line 63, in

File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module

exec(bytecode, module.__dict__)

File "site-packages\requests\utils.py", line 24, in

File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module

exec(bytecode, module.__dict__)

File "site-packages\requests\_internal_utils.py", line 11, in

File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module

exec(bytecode, module.__dict__)

File "site-packages\requests\compat.py", line 11, in

File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module

exec(bytecode, module.__dict__)

File "site-packages\requests\packages\__init__.py", line 29, in

ImportError: No module named 'urllib3'

Failed to execute script test

当然这个错误代码,当时我没有保留,这是版本不匹配造成的:

我的Pyinstaller为3.2

需要降低requests的版本,requests2.10可以成功打包,而2.11就不行。这里贴上解决此问题用到的requests2.10不知道以后会不会修复这个问题。这个bug昨天做梦我还梦到呢。今天早上起来就解决了,兴奋的受不了。希望在此过程中遇到的问题对你会有所帮助。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。



推荐阅读
author-avatar
雪天使杨果果
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有