I have created exe of python file using pyinstaller.

>From that file I am calling another python script.

when I run my project on clean VM where python is not installed I am 
getting error like python is not recognised


import subprocess 
import time 
import sys 
import os 
print ("Hello")
 python_path = "python"
 args = [python_path,'test.py'] 
print(args) 
subprocess.Popen(args) 
time.sleep(100)

 Where pyinstaller will look for python.When exe is frozen I found only 
python35.dll.How can i run python script from exe without installing python.

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/d/optout.

Reply via email to