python - Getting a 'module not found' error after installing a package -
i tried installing deuces package in python using
python -m pip install deuces
which installed perfectly. whenever attempt call upon function, error message:
traceback (most recent call last): file "", line 1, in file "c:\python\anaconda\lib\site-packages\deuces__init__.py", line 1, in card import card modulenotfounderror: no module named 'card'
even though can't find wrong module calling. able check what's going wrong here?
ps: did read post import error python: no module named 'card' found no solution.
it seems package using python 2 relative imports here, removed py pep 404.
these should changed either douces.xxx
or relative imports .xxx
. currently, best hope make pr fix this, or fork library , fix yourself.
Comments
Post a Comment