I've been using PyInstaller for quite some time now and I have been pretty successful with all my projects
I now have run into a problem where I need to use the virtual path can you do this
and then somehow tell it where the virtual path is
I now have run into a problem where I need to use the virtual path can you do this
import PyInstaller.__main__ PyInstaller.__main__.run([ '--noconfirm', '--onedir', '--windowed', ])My example would be path = c:\\Test
and then somehow tell it where the virtual path is
import PyInstaller.__main__ PyInstaller.__main__.run([ '--noconfirm', '--onedir', '--windowed', r'--version-file=Maintenance_versionfile.txt', r'--add-data=Maintenance_Notes.txt;.', r'--add-data=Maintenance_Data.py;.', r'--add-data=Maintenance_admin_Notes.txt;.', r'--add-data=Maintenance_admin_Tools.py;.', r'--add-data=Admin_Privileges_Win11.txt;.', r'--add-data=Admin_Privileges_Win10.txt;.', r'Maintenance.py', '--clean' ])As anybody done this