I've spent the majority of the day trying to troubleshoot this issue. So I'm trying to import the 'deuces' package from github. However, I keep getting an error:
!python
Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
>>> from deuces import Card
Traceback (most recent call last): File "", line 1, in File "C:\Program Files\Anaconda3\lib\site-packages\deuces\__init__.py", line 1, in from card import Card ImportError: No module named 'card'
I've been trying to use anaconda and did the pip install deuces. I don't know what I'm doing wrong-- I also tried uninstalling the regular Python and reinstalling anaconda.
The card file is in the same directory so I'm not sure why it can not find it.