Installation¶
simplefix has a few dependencies. Firstly, it is known to run on Python 3.3 through to 3.10. It will not run on Python 2.7 or earlier versions.
You can install it using pip:
$ pip install simplefix
or using easy_install:
$ easy_install simplefix
It’s usually a good idea to install simplefix into a virtualenv, to avoid issues with incompatible versions and system packaging schemes.
Getting the code¶
You can also get the code from PyPI or GitHub. You can either clone the public repository:
$ git clone git://github.com/da4089/simplefix.git
Download the tarball:
$ curl -OL https://github.com/da4089/simplefix/tarball/master
Or, download the zipball:
$ curl -OL https://github.com/da4089/simplefix/zipball/master
Once you have a copy of the source you can install it into your site-packages easily:
$ python setup.py install