博客简介
本篇博客将介绍如何将Python程序打包成一个在其他电脑中不需要运行安装环境即可直接运行的exe文件,步骤如下:
安装PyInstaller库
准备一个py程序
准备一张图片ico
输入指令打包程序
安装PyInstaller库
打开cmd:win+R
进入编译环境中的script文件目录
输入指令pip install PyInstaller
准备一个py程序
这里用的是一个科赫分形的雪花绘制代码:
代码展示
#coding=gbk
import turtle
from random import choice
color=["#1E90FF","red","yellow","
1