Installation#

Requirements#

Installing Gstore#

Gstore is a Python-only package hosted on PyPI. The recommended installation method is pip-installing into a virtualenv:

$ python -m pip install gstore

The command gstore will be available to you from the command line.

Unstable version#

The master of all the material is the Git repository at https://github.com/sergeyklay/gstore. So, can also install the latest unreleased development version directly from the main branch on GitHub. It is a work-in-progress of a future stable release so the experience might be not as smooth.:

$ python -m pip install -e git+ssh://git@github.com/sergeyklay/gstore.git#egg=gstore

This command will download the latest version of Gstore from the Python Package Index and install it to your system.

Note

The main branch will always contain the latest unstable version, so the experience might be not as smooth. If you wish to check older versions or formal, tagged release, please switch to the relevant tag.

Verify that now we have the current development version, for example:

$ gstore --version
# gstore 0.5.0
# Copyright (C) 2020, 2021, 2022, 2023 Serghei Iakovlev.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

More information about pip and PyPI can be found here:

Alternatively, you can install from the source as follows:

  1. Clone Gstore repository

  2. Go to project root

  3. Run python -m pip install -r requirements.txt

  4. Run the gstore module (directory) as follows:

$ python -m gstore --version
# __main__.py 0.5.0
# Copyright (C) 2020, 2021, 2022, 2023 Serghei Iakovlev.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.