0
你好我知道這是一種愚蠢的問題,但我需要幫助編寫一個蝙蝠腳本,使一個python文件運行它然後刪除它所有這些都很簡單,但我似乎無法讓它工作我的代碼:蝙蝠腳本編譯py2exe
@echo off
set /p %file% = type the file you want to make to exe:
echo from distutils.core import setup >> setup.py
echo import py2exe>> setup.py
echo setup(console=['%file%'])>> setup.py
Python-Portable.exe setup.py py2exe
pause
del "setup.py"
謝謝!
謝謝這個工作 – Unknown