我有一个使用Python click
包的命令行程序。我可以在本地安装和运行它,没问题:
pip install --editable . # (or leave out the editable of course)
现在,我想创建一个可以独立分发和运行的可执行文件。通常情况下,由于我在Windows环境中,我会使用py2exe
,pyinstaller
或cx_Freeze
中的一个。但是,这些包都不起作用。
更具体地说,它们都生成可执行文件,但可执行文件不执行任何操作。我怀疑这个问题是因为我的main.py
脚本没有main
功能。任何建议都会非常有用,提前谢谢!
可以使用从here复制的代码重现问题。
hello.py
import click
@click.command()
def cli():
click.echo("I AM WORKING")
setup.py
from distutils.core import setup
import py2exe
setup(
name="hello",
version="0.1",
py_modules=['hello'],
install_requires=[
'Click'
],
entry_points="""
[console_scripts]
hello=hello:cli
""",
console=['hello.py']
)
如果有人可以提供有效的 setup.py 文件来创建可执行文件和任何其他所需文件,那将非常感激。
从控制台:
python setup.py py2exe
# A bunch of info, no errors
cd dist
hello.exe
# no output, should output "I AM WORKING"
答案 0 :(得分:4)
我更喜欢pyinstaller与其他选择,所以我会根据pyinstaller来回答。
您可以使用pyinstaller检测程序何时被冻结,然后启动点击应用程序,如:
if getattr(sys, 'frozen', False):
cli(sys.argv[1:])
这个简单的测试应用程序可以简单地构建:
pyinstaller --onefile hello.py
import sys
import click
@click.command()
@click.argument('arg')
def cli(arg):
click.echo("I AM WORKING (%s)" % arg)
if getattr(sys, 'frozen', False):
cli(sys.argv[1:])
>dist\test.exe an_arg
I AM WORKING (an_arg)