First time install: nupic.bindings are unsatisfied

Good afternoon,
First time installer here.
Here’s where I am:

jay@jay-Virtual-Machine ~ $ pip install nupic.bindings --user --no-cache
Collecting nupic.bindings
Could not find a version that satisfies the requirement nupic.bindings (from versions: )
No matching distribution found for nupic.bindings

Environment:

OS: Linux Mint 18 on Hyper-V emulator.
Professional programmer with C/C++ but no python experience.

Goal for Nupic:
Predicting performance of movies.

1 Like

What version of pip are you using? Make sure you have these dependencies installed. You should not need to install nupic.bindings directly. You should be able to run: pip install nupic --user, which will install it as a dependency.

I was working through the list of dependencies when I hit this snag.
Here are the versions:

jay@jay-Virtual-Machine ~ $ pip -V
pip 9.0.1 from /home/jay/.local/lib/python2.7/site-packages (python 2.7)
jay@jay-Virtual-Machine ~ $ python -V
Python 2.7.12
jay@jay-Virtual-Machine ~ $

BTW: Watched the HTM school videos. Very helpful. Thanks!

One note, I did some of the installs using ‘sudo’.
I didn’t see the ‘–user’ option until afterward.
Might that be part of the issue?

Maybe. Using sudo with pip can be problematic in some cases. I suggest you uninstall all the global packages and re-install with --user. Be sure to uninstall nupic completely first.

Uninstalled wheel and setuptools since they were sudo’ed.
Reinstalled using ‘–user’

Still fails :frowning:

Collecting DBUtils==1.1 (from nupic)
Using cached DBUtils-1.1.tar.gz
Collecting python-dateutil==2.1 (from nupic)
Using cached python-dateutil-2.1.tar.gz
Collecting coverage==3.7.1 (from nupic)
Using cached coverage-3.7.1.tar.gz
Collecting nupic.bindings==0.7.0 (from nupic)
Could not find a version that satisfies the requirement nupic.bindings==0.7.0 (from nupic) (from versions: )
No matching distribution found for nupic.bindings==0.7.0 (from nupic)

Do you happen to be using a 32bit system? Or AMD?

32 bit Linux. The 64 bit support on VM’s is a bit spotty.

:frowning_face: Unfortunately, we do not support 32bit systems.

Ok. Thanks for the help debugging it

Hello, recently I’m trying to install nupic on Linux(64-bit) but fails with the hints “Could not find a version that satisfies the requirement nupic.bindings==1.0.0 (from nupic) (from versions: 1.0.1) No matching distribution found for nupic.bindings==1.0.0 (from nupic)”. The installed packages’ versions are 9.0.1-pip, 1.14.0-numpy, 0.30.0-wheel, 38.4.0-setuptools and I re-install the packages with --user. However, the problem is unsolved after I have taken many methods. How can I fix the bug?

First, make sure you have uninstalled nupic completely, then try installing again with pip install --user and tell me what happens.