Python脚本生成可执行文件&(恋爱小脚本)
Python脚本生成可执行文件&(恋爱小脚本)
-
参考文献:
http://c.biancheng.net/view/2690.html
;https://blog.csdn.net/qq_39463175/article/details/103259009
-
概述:
- python编辑好的脚本文件,如果需要发送给其他人就需要他人电脑上安装
python
且版本相差不能过大,容易导致出错。 - 因此直接打包生成可执行文件(.exe)文件,可以良好进行使用。
- python编辑好的脚本文件,如果需要发送给其他人就需要他人电脑上安装
1.安装包
# 如果有虚拟环境则进入虚拟环境
pip install pyinstaller
2.简单介绍
表1
-h,--help | 查看该模块的帮助信息 |
---|---|
-F,-onefile | 产生单个的可执行文件 |
-D,--onedir | 产生一个目录(包含多个文件)作为可执行程序 |
-a,--ascii | 不包含 Unicode 字符集支持 |
-d,--debug | 产生 debug 版本的可执行文件 |
-w,--windowed,--noconsolc | 指定程序运行时不显示命令行窗口(仅对 Windows 有效) |
-c,--nowindowed,--console | 指定使用命令行窗口运行程序(仅对 Windows 有效) |
-o DIR,--out=DIR | 指定 spec 文件的生成目录。如果没有指定,则默认使用当前目录来生成 spec 文件 |
-p DIR,--path=DIR | 设置 Python 导入模块的路径(和设置 PYTHONPATH 环境变量的作用相似)。也可使用路径分隔符(Windows 使用分号,Linux 使用冒号)来分隔多个路径 |
-n NAME,--name=NAME | 指定项目(产生的 spec)名字。如果省略该选项,那么第一个脚本的主文件名将作为 spec 的名字 |
在 表1 中列出的只是 PyInstaller
模块所支持的常用选项,如果需要了解 PyInstaller 选项的详细信息,则可通过 pyinstaller -h 来查看。
3.案例
3.1 编写脚本
# -*- coding: utf-8 -*-
'''
@Time : 2022/2/9 15:12
@Author : ziqingbaojian
@File : draw.py
'''
import turtle
import time
def LittleHeart():
for i in range(200):
turtle.right(1)
turtle.forward(2)
isLove = str(input('你会一直爱她吗?(Y or N)\n')).upper()
run=1
while (run):
if isLove == "Y":
me = ""
love = ""
if love == '':
love = ' 傻狗喜欢你 '
turtle.setup(width=900, height=500)
turtle.color('red', 'red')
turtle.pensize(3)
turtle.speed(50)
turtle.up()
turtle.hideturtle()
turtle.goto(0, -180)
turtle.showturtle()
turtle.down()
turtle.speed(5)
turtle.begin_fill()
turtle.left(140)
turtle.forward(224)
LittleHeart()
turtle.left(120)
LittleHeart()
turtle.forward(224)
turtle.end_fill()
turtle.pensize(5)
turtle.up()
turtle.hideturtle()
turtle.goto(0, 0)
turtle.showturtle()
turtle.color('#CD5C5C', 'blue')
turtle.write(love, font=('gungsuh', 30,), align="center")
turtle.up()
turtle.hideturtle()
if me != '':
turtle.color('yellow', 'red')
time.sleep(2)
turtle.goto(180, -180)
turtle.showturtle()
turtle.write(me, font=(20,), align="center", move=True)
window = turtle.Screen()
window.exitonclick()
run = 0
else:
print("活该单身一辈子")
print("!!!!!!!!!再给你一次机会!!!!!!!!")
isLove = input('你会一直爱她吗?(Y or N)\n')
continue
3.2 制作图标与打包
-
打包生成
exe
,文件,windows 可以设置自己的图标。 -
图标生成地址:点击这里
-
打包成功后,生成的
exe
,文件就存放在与 dist 文件夹下。