2018年3月4日 星期日

Pyinstaller

If you want to hide the console window, here is the documentation: This is how you use the --noconsole option
python pyinstaller.py --noconsole yourscript.py
==> pyinstaller --noconsole main.py

Create a one-file bundled executable.
==> pyinstaller --noconsole -F main.py

沒有留言:

張貼留言

Lua, 7 kyu, 排隊問題

 7 kyu,  Lost Lineup 這題很簡單,我一開始實作的方法是: local function find_lineup ( distances ) local a , d = {}, # distances for i = 1 , d do ...