There is a pyz file that has all the dependency bundle I need (numpy, tensorflow....etc)
I am wondering how do I run a function inside that pyz file.
For example if there is a function called runJob
I would like to call that function in my script
import function_from_pyz
if __name__ == "__main__":
funciton_from_pyz.runJob()
The following doesn't quite work
<python path> my_pyz_file.pyz myscript.py