pyinstaller pymssql

Solutions on MaxInterview for pyinstaller pymssql by the best coders in the world

showing results for - "pyinstaller pymssql"
Paola
06 Mar 2017
1#To whom might help
2#I got lots of issues trying to user pymssql with Pyinstaller and 
3#I finally got it right so posting here might help someone
4#after you install pymssql using pip install pymssql
5
6#use this parameters in pyintaller to get it included
7
8--onefile --paths=.\venv\ --hidden-import='pymssql' --hidden-import='uuid' --collect-all='pymssql' --collect-all='uuid'
Mario
28 Feb 2020
1--onefile --paths=.\venv\ --hidden-import='pymssql' --hidden-import='uuid' --collect-all='pymssql' --collect-all='uuid'
2