pyautogui 无法打包exe文件,请问如何解决
发布网友
发布时间:2022-05-13 12:38
我来回答
共1个回答
热心网友
时间:2022-05-22 01:19
方法/步骤1:
python的egg文件有点像java中的jar文件,是一个工程打包文件,便于安装部署,仅此一点,给多少pythoner带来了多少激动。
如何制作egg文件呢?see官方文档http://peak.telecommunity.com/DevCenter/PythonEggs, 到http://pypi.python.org/pypi/setuptools下载setuptools包,然后安装: python setup.py追问setuptool 已经安装了。EGG 文档看了Edit the target package's setup.py and add from setuptools import setup such that it replaces the existing import of the setup function. Then run setup.py bdist_egg. 。不知道具体该怎么做。。能不能告诉详细步骤