trackmastersteve / alienfx

AlienFX is a CLI and GUI utility to control the lighting effects of your Alienware computer.
GNU General Public License v3.0
288 stars 69 forks source link

no module named builtins #33

Closed kb6737 closed 6 years ago

kb6737 commented 6 years ago

Hello I'm on a clean install of an M14x R2 with ubuntu 16.10

I believe you need to add pip install future to the requirements.

also the program fails on my M14x R2

TheOmegaPope commented 6 years ago

I am on a clean install of Ubuntu 17.X as anything less doesn't load on my new hardware. I am getting the exact same message, See final line below. (i also agree with the PIP comment) Clean install done entirely to get your program working. Seems like a call to a missing file or missing dependency. Any thoughts?

Traceback (most recent call last): File "/usr/local/bin/alienfx", line 11, in load_entry_point('alienfx==2.1.1', 'console_scripts', 'alienfx')() File "/home/ubuntu/.local/lib/python2.7/site-packages/pkg_resources/init.py", line 572, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/home/ubuntu/.local/lib/python2.7/site-packages/pkg_resources/init.py", line 2755, in load_entry_point return ep.load() File "/home/ubuntu/.local/lib/python2.7/site-packages/pkg_resources/init.py", line 2408, in load return self.resolve() File "/home/ubuntu/.local/lib/python2.7/site-packages/pkg_resources/init.py", line 2414, in resolve module = import(self.module_name, fromlist=['name'], level=0) File "build/bdist.linux-x86_64/egg/alienfx/ui/console/init.py", line 2, in File "build/bdist.linux-x86_64/egg/alienfx/ui/console/main.py", line 35, in File "build/bdist.linux-x86_64/egg/alienfx/core/prober.py", line 32, in ImportError: No module named builtins

TheOmegaPope commented 6 years ago

I fixed my own error by looking at other github projects

The problem is your setup needs to include "pip install future"

This fixes the builtins dependency error

trackmastersteve commented 6 years ago

I've added "pip install future" to the dependencies list. Thank you for pointing that out.