Home Install Docs Contribute API Docs Issues Code

Download & Install

pyspread works on Linux, Posix platforms and Windows, on which PyQt5 is available. While there have been reports that pyspread can be used on OS X, OS X is currently unsupported (can you help?).

Install pyspread

The table below shows for which operating systems, pyspread is available in which version. If pyspread is unavailable or outdated for your operating system, you can install it using one of the three methods below.

Packaged

With pip

pip install pyspread

From git

It is assumed that python3 and git are installed.

Get sources and enter dir

git clone https://gitlab.com/pyspread/pyspread.git
# or
git clone git@gitlab.com:pyspread/pyspread.git
# then
cd pyspread

Install dependencies and pyspread

pip3 install -r requirements.txt
# or if pip3 is not present
pip install -r requirements.txt
# next
python3 setup.py install

From tarball

It is assumed that python3 and gpg are installed

Download and verify tarball Download the latest pyspread tarball and its gpg signature into the same folder (alternative download location).

gpg --verify pyspread-<version>.tar.gz.sig

Check the output for information if the signature is correct.

Unpack tarball and enter dir

tar xvzf pyspread-<version>.tar.gz
cd pyspread-<version>/

Install dependencies and pyspread

pip3 install -r requirements.txt
# or if pip3 is not present
pip install -r requirements.txt
# next
python3 setup.py install

Launch pyspread

$ pyspread

or after changing directory to the main folder

$ python -m pyspread

or

$ ./pyspread/pyspread.py 

Outdated version (Python 2.x compatible)

The outdated version pyspread v1.1.3 is still available - see install v1.x. Please use it only if you require Python 2.x compatibility. Also note that it is incompatible with Python 3.

© Martin Manns and the pyspread team