The version of distribute that comes with this repo is out of date and causes problems on Ubuntu 17.04.
Installed /usr/local/lib/python2.7/dist-packages/distribute-0.6.28-py2.7.egg
Traceback (most recent call last):
File "setup.py", line 18, in <module>
install_requires=['twisted', 'ecdsa', 'pyopenssl', 'autobahn',]
File "/usr/lib/python2.7/distutils/core.py", line 151, in setup
dist.run_commands()
File "/usr/lib/python2.7/distutils/dist.py", line 953, in run_commands
self.run_command(cmd)
File "/usr/lib/python2.7/distutils/dist.py", line 972, in run_command
cmd_obj.run()
File "build/bdist.linux-x86_64/egg/setuptools/command/install.py", line 73, in run
File "build/bdist.linux-x86_64/egg/setuptools/command/install.py", line 101, in do_egg_install
File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py", line 358, in run
File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py", line 578, in easy_install
File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py", line 630, in install_item
File "build/bdist.linux-x86_64/egg/setuptools/command/easy_install.py", line 677, in process_distribution
TypeError: __init__() takes exactly 2 arguments (4 given)
Installing the latest distribute and hacking the one included helps get past the error when installing.
pip install --upgrade distribute
Successfully uninstalled distribute-0.6.28
Successfully installed distribute-0.7.3
The version of distribute that comes with this repo is out of date and causes problems on Ubuntu 17.04.
Installing the latest distribute and hacking the one included helps get past the error when installing.