Creating An Exe With Selenium Module: Py2exe/Pyinstaller
I've looked everywhere. Stackoverflow, various messageboards, the py2exe website, the pyinstaller website...nothing is helping. Including the selenium module, particularly making a
Solution 1:
Try this:
options={
'py2exe':
{
'skip_archive': True,
'unbuffered': True,
'bundle_files': 2, #assuming you dont want to include the python interpreter
'optimize': 2,
},
},
zipfile = None
Post a Comment for "Creating An Exe With Selenium Module: Py2exe/Pyinstaller"