cx_Freeze build error?

前端 未结 2 798
野趣味
野趣味 2020-12-20 18:58

I am trying to create a binary from a python,flask and boto3 app. I am having trouble running the pip install cx_Freeze command too work. I am getting the follo

2条回答
  •  我在风中等你
    2020-12-20 19:43

    pip never installs system libraries, it only concerns itself with Python libs.

    It seems you need to install zlib before installing cx_Freeze.

    Another tool to generate binaries is PyInstaller.

提交回复
热议问题