I have working Python script using scipy
and numpy
functions and I need to run it on the computer with installed Python but without modules scipy
and numpy
. How should I do that? Is .pyc
the answer or should I do something more complex?
Notes:
- I don't want to use
py2exe
. I am aware of it but it doesn't fit to the problem. - I have read, these questions (What is the difference between .py and .pyc files?, Python pyc files (main file not compiled?)) with obvious connection to this problem but since I am a physicist, not a programmer, I got totally lost.