Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Linux installation
``` bash
> python -m pip install --upgrade pip
> pip list
Package Version
---------- -------
pip 19.1
setuptools 40.8.0
> pip list --user
> pip install pylint
> pip install toml
> pip install netCDF4
> pip install matplotlib
> pip install numpy
> pip install seawater
> pip install PyInstaller
> pip install ConfigParser
```
## basemap installation
``` bash
> sudo apt-get install libgeos-3.5.0 libgeos-c1v5 libgeos-dev
> sudo -H python3 -m pip install basemap-v1.1.0.tar.gz
Installing collected packages: pyproj, pyshp, basemap
Successfully installed basemap-1.1.0 pyproj-2.1.2 pyshp-2.1.0
```
Clone the latest version of PySimpleGUI
``` bash
> git clone https://github.com/PySimpleGUI/PySimpleGUI.git
```
and add the path of PySimpleGUI directory to $PYTHONPATH env
If you want use QT instead of Tk, replace:
``` bash
import PySimpleGUI as gs
```
by
``` bash
import PySimpleGUIQt as gs
```