Skip to content
Snippets Groups Projects

Linux installation

> 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

> 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

> 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:

import PySimpleGUI as gs

by

import PySimpleGUIQt as gs