安装pyinstaller
pip install pyinstaller
获取打包py文件的位置(文件路径全英文)
import os print(os.path.realpath(__file__))
打包命令
pyinstaller -F F:\script\csdn\shua_csdn.py
打包完成后最终文件位置在dict下面,这个文件可以在没有python环境的电脑下运行
安装pyinstaller
pip install pyinstaller
获取打包py文件的位置(文件路径全英文)
import os print(os.path.realpath(__file__))
打包命令
pyinstaller -F F:\script\csdn\shua_csdn.py
打包完成后最终文件位置在dict下面,这个文件可以在没有python环境的电脑下运行