Can anyone help me solve this issue?
JavaScript
x
5
1
ImportError: dlopen(/Users/ ./venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so, 2): Symbol not found: __PyEval_GetBuiltinId
2
Referenced from: /Users/ ./venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so
3
Expected in: flat namespace
4
in /Users/ ../venv/lib/python3.6/site-packages/recordclass/mutabletuple.cpython-36m-darwin.so
5
I’m using a Mac if that’s of any relevance
Advertisement
Answer
I couldn’t quite figure out what the issue was but I’m assuming __PyEval_GetBuiltinId
was broken/uninstalled.
So all I did to fix this was pip uninstall recordclass
and then pip install --no-cache-dir recordclass
and it seemed to have worked