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
So if from Cython.Build import cythonize fail, extension = 'cpp'.
Then at line 22 we see "fastBPE/fastBPE." + extension so there is fastBPE/fastBPE.cpp.
According to your GH, this file does not exist.
The text was updated successfully, but these errors were encountered:
Hi, I encountered the same issue. It happened because I haven't installed the Cython package. After I install that package by pip install Cython the problem fixed.
TL;DR :
fastBPE/fastBPE.cpp
missing <=> (cython
not installed => install crash)According to
setup.py
:So if
from Cython.Build import cythonize
fail,extension = 'cpp'
.Then at line
22
we see"fastBPE/fastBPE." + extension
so there isfastBPE/fastBPE.cpp
.According to your GH, this file does not exist.
The text was updated successfully, but these errors were encountered: