from .core import * ImportError: No module named core
Andrechang opened this issue · 2 comments
Andrechang commented
After doing
python3 setup.py install
When I import taso
it gives
from .core import *
ImportError: No module named core
jiazhihao commented
Can you make sure that you have Cython installed on your machine? Missing Cython returns a warning instead of an error, so many people may have missed that.
Meanwhile, make sure you run import taso
in a directory other than taso/python
.
Andrechang commented
works now
need to install cython