Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
134 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...