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.7.0
# Copyright (C) 2020-2024 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: