Python to .bat conversion

谁说我不能喝 提交于 2020-06-08 20:40:11

问题


I would like a user on Windows to be able to run my Python program, so I want to convert it to a .bat file. Is there a way to convert it? I've tried searching, but didn't find anything.


回答1:


Unless your script is trivial it will not be possible to 'translate' it into a batch file. However two options exist:

  • Create a batch file to run the python script
  • Attempt to compile the script into an executable

The first option is trivial. Simply create a batch file as so:

@ECHO OFF
PATH_TO_PYTHON\python.exe PATH_TO_SCRIPT.py

If you are in a corporate environment you could put a python installation on a network and create a batch file to run the script from there. Otherwise you will need the user to install python. If python is on their path then the batch file can be simplified to:

@ECHO OFF
python PATH_TO_SCRIPT.py

Alternatively, there are options available that attempt to compile scripts into .exe files. I've never had any success with them, but py2exe seems the most common.




回答2:


No, I don't think you can reasonably expect to do this.

Batch files are executed by the Windows command interpreter, which is way way more primitive.

Python is a full-blown programming language with a rich and powerful library of standard modules for all sorts of tasks. All the Windows command interpreter can do is act like a broken shell.

On the other hand, Python is available on Windows, so just tell the user to install it and run your program directly.




回答3:


you can do it in 2 ways :

  1. create a normal text file with an extension .bat and write
@ECHO OFF

"python.exe location" "your file.py location"
  1. create a normal text file with an extension .bat and write
"python.exe location" "your file.py location"
pause



回答4:


Just create a batch file that contains this two lines:

yourfilename.py
pause

Then run the batch file by double-clicking it.



来源:https://stackoverflow.com/questions/13179515/python-to-bat-conversion

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!