我在python中编写了一个简单的程序,它接受输入值并相应地显示结果。
计划:Test.py
a=raw_input('Enter value1:')
b=raw_input('Enter value2:')
#Do some work here based on passed inputs
我必须在不安装python的不同系统中运行该程序。所以我使用Test.exe
创建了pyinstaller
文件。
现在当我运行.exe
时,它会在几秒钟内关闭。
问题:如何通过运行Enter value1:
文件向用户发送消息.exe
以放置一些输入值?
答案 0 :(得分:1)
<强> MAKE.BAT 强>
rem CREATE our test.py
echo a=raw_input('Enter value1:') > test.py
echo b=raw_input('Enter value2:') >> test.py
rem Install Pyinstaller
c:\python27\python -m pip install pyinstaller -U
rem Build IT!!!!!
c:\python27\scripts\pyinstaller --onefile test.py
rem RUN IT!!!!
dist\test.exe