脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python-pyinstaller、打包后获取路径的实例

python-pyinstaller、打包后获取路径的实例

2021-07-03 00:32买菇凉的小火披 Python

今天小编就为大家分享一篇python-pyinstaller、打包后获取路径的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

使用pyinstaller可以把.py文件打包为.exe可执行文件,命令为:

pyinstaller hello.py

打包后有两个文件夹,一个是dist,另外一个是build,可执行文件在dist文件夹里面,但是会有许多依赖是独立文件存在

pyinstaller -f hello.py

使用-f参数后,打包的可执行文件是一个整体,只有一个.exe文件。

获取文件路径的方式有四种,可以在打包成exe文件后,获取.exe文件的当前路径

python" id="highlighter_61210">
?
1
2
3
4
5
6
7
8
9
10
11
import sys
 
import os
 
print(sys.path[0])
 
print(sys.argv[0])
 
print(os.path.dirname(os.path.realpath(sys.executable)))
 
print(os.path.dirname(os.path.realpath(sys.argv[0])))

在ide界面的执行结果如下图:

python-pyinstaller、打包后获取路径的实例

在exe文件的执行结果为:

python-pyinstaller、打包后获取路径的实例

以上这篇python-pyinstaller、打包后获取路径的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_31801903/article/details/81666124

延伸 · 阅读

精彩推荐