How to make a Python script an executable program

≡放荡痞女 提交于 2019-11-27 08:27:33

问题


To be clear, not just "run python scripts" But to make my python script a "executable" or "callable" program that can be used in other programming languages or platforms. More like a API maybe.

The thing is I implemented several algorithms in java and they're supported by numpy and spipy, but others want to call my python program in their java program.

Then the numpy and spipy are problems. They can't be in java and jython...

Is there a solution that I can make this an executable program that others don't need the environment but just to run the program with several parameters accepted?


回答1:


If you just need to make the python programs executable, then you can add a line to the top like this:

   #!/usr/bin/python

Replace /usr/bin/python with the filepath to python, which can be obtained by typing

    which python 

into the terminal, assuming you're using a unix-based system.

You can then tell the operating system that the program is executable with

    chmod +x nameofprogram

If the java programs require something more complicated than just being able to run the python parts as executables, then you'll probably need to provide more information for anyone to be able to help you.



来源:https://stackoverflow.com/questions/17173664/how-to-make-a-python-script-an-executable-program

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