nerevu / riko

A Python stream processing engine modeled after Yahoo! Pipes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImportError: No module named builtins

madcaplaughsha opened this issue · comments

On from riko import get_path results in this error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/dist-packages/riko/__init__.py", line 37, in <module>
    from builtins import *
ImportError: No module named builtins

What version of python do you have? And what command did you use to install?

Python 2.7.9.

pip install riko[async]

Ok... let me try to reproduce.

Ok. For some reason, setuptools isn't picking up the future requirement. Just do pip install future and you should be good to go.

Ahh! Ok, worked.

Great... still a bug though. So I need to figure out why the requirement isn't being installed (and also why the travis tests passed :/)