You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the famous "Segmentation fault: 11" error while importing json in the file nupic_history/io_client.py, whose corresponding module is indirectly imported from the webserver.py script, when importing NupicHistory (i.e. from nupic_history import NupicHistory). The strangest things are that json is a standard Python module and I can import it from an interactive Python shell without getting this error. The json module is not even used in nupic_history/io_client.py, so I commented that import statement. But I am getting another error now, but it's related to the import statement import capnp in that same file nupic_history/io_client.py (See this issue).
Of course, I have looked for a solution on the web, but I didn't really find something similar. I just wanted to let you know about this strange behavior. I'm on a Mac OS X, version 10.13.6, and I am using Python 2.7.15 in a virtual environment.
The text was updated successfully, but these errors were encountered:
I am getting the famous "Segmentation fault: 11" error while importing
json
in the filenupic_history/io_client.py
, whose corresponding module is indirectly imported from thewebserver.py
script, when importingNupicHistory
(i.e.from nupic_history import NupicHistory
). The strangest things are thatjson
is a standard Python module and I can import it from an interactive Python shell without getting this error. Thejson
module is not even used innupic_history/io_client.py
, so I commented that import statement. But I am getting another error now, but it's related to the import statementimport capnp
in that same filenupic_history/io_client.py
(See this issue).Of course, I have looked for a solution on the web, but I didn't really find something similar. I just wanted to let you know about this strange behavior. I'm on a Mac OS X, version 10.13.6, and I am using Python 2.7.15 in a virtual environment.
The text was updated successfully, but these errors were encountered: