Open arb-git opened 3 years ago
Notice the error message.
File "/tmp/pip-install-1j0aqyyp/unittest2/unittest2/loader.py", line 92
except Exception, e:
^
SyntaxError: invalid syntax
It's pointing out a syntax error on the line that contains except Exception, e:
.
Python3 exceptions are of the format except Exception as e:
. https://docs.python.org/3/reference/compound_stmts.html#except
Python2 exceptions allow a comma or an "as". https://docs.python.org/2.7/reference/compound_stmts.html#except
You're trying to install it with Python3.7. The repo lists 2.7 as a dependency. https://github.com/numenta/nupic
Dependencies
The following dependencies are required to install NuPIC on all operating systems.
Python 2.7
Hi!
I was trying to get acquainted with nupic library, but it does not work from the very beginning, the "pip install nupic" command.
Is there anything that can be done about it? Honestly, if I can't even install it, what use is it to me. But maybe I am missing something simple. Any help would be much appreciated!
Regards, A.