I'm not sure if this is relevant or not but `sys.path` is the PATH environment variable. It's PYTHONPATH plus some internal folders of whichever python you are running. `sys.path` says where to search for *modules* whenever it encounters an `import` statement. It will not affect subprocess calls of any sort. To get PATH use `os.environ["PATH"]`.
-- 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 view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/3620c210-5281-4d9b-90dd-2f0a6f3e5a88%40googlegroups.com.
