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

时间:2022-03-09 09:21:33

使用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