2

同僚に配布できるPython ベースのシンプルな GUI アプリを構築したいと考えています。この過程で、Python 2.7 版のPySimpleGUI27について学びました。

以下は、メニュー オプションを含むウィンドウを生成する簡単なコードです。次に、PyInstallerを使用してビルドを作成し、テストしました。ただし、「dist」フォルダーから .exe ビルドを実行すると、点滅して消えます。しかし、Python IDE 内から GUI スクリプトを実行すると、実際に GUI 機能を確認できます。

import PySimpleGUI27 as sg

sg.ChangeLookAndFeel('LightGreen')
sg.SetOptions(element_padding=(0, 0))

# ------ Menu Definition ------ #
menu_def = [['File', ['Open', 'Save', 'Exit']],
            ['Edit', ['Paste', ['Special', 'Normal', ], 'Undo'], ],
            ['Help', 'About...'], ]

# ------ GUI Definition ------ #
layout = [
    [sg.Menu(menu_def, )],
    [sg.Output(size=(60, 20))]
]

window = sg.Window("Windows-like program", default_element_size=(12, 1), auto_size_text=False, auto_size_buttons=False,
                   default_button_element_size=(12, 1)).Layout(layout)

# ------ Loop & Process button menu choices ------ #
while True:
    event, values = window.Read()
    if event == None or event == 'Exit':
        break
    print('Button = ', event)
    # ------ Process menu choices ------ #
    if event == 'About...':
        sg.Popup('About this program', 'Version: 1.0', 'PyDist: Anaconda27')
    elif event == 'Open':
        filename = sg.PopupGetFile('file to open', no_window=True)
        print(filename)

スクリプトを実行すると GUI が生成される 1

exeファイルを実行しようとすると、点滅して消えます。ここで素晴らしいGIFをチェックしてください。アドバイスをいただければ幸いです。

Powershell を使用してフォルダーから EXE を実行します。

PS C:\Users\user\AppData\Local\Continuum\anaconda3\envs\XCAL\Scripts\dist\PySimpleGUI_00> .\PySimpleGUI_00.exe
Traceback (most recent call last):
  File "PySimpleGUI_00.py", line 1, in <module>
  File "c:\users\user\appdata\local\temp\pip-install-qrr1qq\PyInstaller\PyInstaller\loader\pyimod03_importers.py", line 395, in load_module
  File "site-packages\PySimpleGUI27\__init__.py", line 2, in <module>
  File "c:\users\user\appdata\local\temp\pip-install-qrr1qq\PyInstaller\PyInstaller\loader\pyimod03_importers.py", line 395, in load_module
  File "site-packages\PySimpleGUI27\PySimpleGUI27.py", line 13, in <module>
  File "site-packages\future\standard_library\__init__.py", line 459, in install_aliases
ImportError: No module named UserList
[15328] Failed to execute script PySimpleGUI_00
4

1 に答える 1

1

Python 3 を使用して pyinstaller を実行することに加えて、Python 3 バージョンの PySimpleGUI ライブラリを使用することをお勧めします。

これらのオプションを指定して pyinstaller を実行します

pyinstaller -wF demo.py

プレーンな PySimpleGUI インポートを使用するには、例を次のようにする必要があります。

import PySimpleGUI as sg

sg.ChangeLookAndFeel('LightGreen')
sg.SetOptions(element_padding=(0, 0))

# ------ Menu Definition ------ #
menu_def = [['File', ['Open', 'Save', 'Exit']],
            ['Edit', ['Paste', ['Special', 'Normal', ], 'Undo'], ],
            ['Help', 'About...'], ]

# ------ GUI Definition ------ #
layout = [
    [sg.Menu(menu_def, )],
    [sg.Output(size=(60, 20))]
]

window = sg.Window("Windows-like program", default_element_size=(12, 1), auto_size_text=False, auto_size_buttons=False,
                   default_button_element_size=(12, 1)).Layout(layout)

# ------ Loop & Process button menu choices ------ #
while True:
    event, values = window.Read()
    if event == None or event == 'Exit':
        break
    print('Button = ', event)
    # ------ Process menu choices ------ #
    if event == 'About...':
        sg.Popup('About this program', 'Version: 1.0', 'PyDist: Anaconda27')
    elif event == 'Open':
        filename = sg.PopupGetFile('file to open', no_window=True)
        print(filename)
于 2018-11-02T17:39:22.990 に答える