Release 0.1.1 - explaining installation
This commit is contained in:
parent
4d52276478
commit
588f332983
|
@ -35,6 +35,38 @@ At the moment (22-Jan-2019) the port has barely begun but it's far enough along
|
|||
Having trouble? Visit the [GitHub site ](http://www.PySimpleGUI.com) and log an Issue.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
Installation is quite simple:
|
||||
|
||||
`pip install pysimpleguiweb`
|
||||
|
||||
Should this not work, you can copy and paste the file PySimpleGUIWeb.py into your application folder.
|
||||
|
||||
## Using
|
||||
|
||||
There are a lot of examples in the PySimpleGUI Cookbook as well as on the GitHub site. At the moment very few will work due to the limited number of features of the 0.1.0 release. It shouldn't be too long before they'll work.
|
||||
|
||||
To use PySimpleGUIWeb you need to import it:
|
||||
`import PySimpleGUIWeb as sg`
|
||||
|
||||
From there follow the code examples in the Coookbook and the Demo Programs. The only difference in those programs is the import statement. The remainder of the code should work without modification.
|
||||
|
||||
|
||||
## Requirements
|
||||
|
||||
PySimpleGUIWeb is based on the Remi project. You will need to install Remi prior to running PySimpleGUIWeb:
|
||||
|
||||
`pip install remi`
|
||||
|
||||
You can learn more about Remi on its homepage.
|
||||
|
||||
https://github.com/dddomodossola/remi
|
||||
|
||||
PySimpleGUIWeb runs only on Python 3. Legacy Python is not supported.
|
||||
|
||||
|
||||
|
||||
## What Works
|
||||
|
||||
Text Element
|
||||
|
|
Loading…
Reference in New Issue