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
Running python applications/kmeans.py gives me the error:
Traceback (most recent call last):
File "applications/kmeans.py", line 5, in
from compiler.types import cint, sint, sintarray, Input, Role, Output
ModuleNotFoundError: No module named 'compiler.types'
I tried changing from compiler.types import cint, sint, sintarray, Input, Role, Output to from ..compiler.types import cint, sint, sintarray, Input, Role, Output but that did not work
How can I resolve this?
The text was updated successfully, but these errors were encountered:
Running
python applications/kmeans.py
gives me the error:Traceback (most recent call last):
File "applications/kmeans.py", line 5, in
from compiler.types import cint, sint, sintarray, Input, Role, Output
ModuleNotFoundError: No module named 'compiler.types'
I tried changing
from compiler.types import cint, sint, sintarray, Input, Role, Output
tofrom ..compiler.types import cint, sint, sintarray, Input, Role, Output
but that did not workHow can I resolve this?
The text was updated successfully, but these errors were encountered: