Installation
To install PySimpleGUI, use pip3 install PySimpleGUI
, as the examples below show. If you don't have a PATH variable set for Python, you'll have to manually navigate to the pip3 folder location:
Windows
Open command prompt and navigate to your Scripts folder inside your Python installation folder. You can use cd
to change directory in command prompt. For example:
c:
cd\Users\JohnCitizen\AppData\Local\Programs\Python\Python37\Scripts
pip3 install PySimpleGUI
Mac
Open terminal and navigate to your bin folder inside your Python installation folder. You can use cd
to change directory in terminal. For example:
cd /Library/Frameworks/Python.framework/Versions/3.6/bin
pip3 install PySimpleGUI