2017-08-25 60 views

回答

0

節省:

# thanks to https://www.youtube.com/watch?v=GSoOwSqTSrs 
from cx_Freeze import setup, Executable 

setup(
    name='KutsalAklinNerde?', 
    version='0.1',    #Further information about its version 
    description='Parse stuff', #It's description 
    executables= [Executable("Example.py")]) 

setup.py在您的Example.py

然後(要轉換到.EXE的的.py)的同一目錄下運行>蟒蛇的setup.py在命令提示符該目錄建立

相關問題