-
Notifications
You must be signed in to change notification settings - Fork 50
Installation
iwonbigbro edited this page Oct 4, 2013
·
4 revisions
GSync is now available via pypi, so can be installed using setuptools. I'd recommend using pip to install, since this will auto resolve dependencies for you. I only have experience of using pip on Debian, which isn't trivial to install, so here is how I did it:
$ sudo apt-get install python-setuptools
That will install setuptools, providing the easy install utility...
$ sudo easy_install --verbose pip
That will download and install pip, along with any module dependencies, from pypi...
$ pip install gsync
That will install gsync and any dependencies. If you already have an older version of gsync installed, you can use the upgrade option:
$ pip install --upgrade gsync
If you have issues on other platforms, please raise a git hub ticket and I will find a solution or provide a workaround for your situation. Thanks, Craig.