I followed the setup instructions (except using git instead of a zip) but the setup failed because there's a dependency on setuptools which is not mentioned in the instructions:
$ git clone https://github.com/ReinProject/python-rein.git
$ cd python-rein/
$ git checkout v0.3.1-beta
$ sudo python setup.py install
Traceback (most recent call last):
File "setup.py", line 4, in <module>
from setuptools import find_packages, setup
ImportError: No module named setuptools
I followed the setup instructions (except using git instead of a zip) but the setup failed because there's a dependency on
setuptools
which is not mentioned in the instructions:The fix is to add this to the instructions:
Tested on Ubuntu 16.04