Setting up poker bot
11:10 04 Feb 2024

I'm a new "hobbyist" software developer / tech guy and have been running several interesting pilot projects so far. Currently I'm interested about poker after reading some discussions around those and found an interesting open source project https://github.com/dickreuter/Poker.

For some reason I'm having issues even getting the project up and running, since there some kind of module error popping up.

What I have been doing is the following:

1. Cloning the repository : git clone https://github.com/dickreuter/Poker.git

2. Setting up venv accordingly : directly from PyCharm

3. Installing mac requirements to venv : pip3 install -r requirements_mac.txt

4. Trying to run main.py : python3 Users//Desktop/poker_ai/Poker/poker/main.py

Now it gives me this error:

  File "/Users//Desktop/poker_ai/Poker/poker/main.py", line 14, in 
    from poker.restapi_local import local_restapi
ModuleNotFoundError: No module named 'Poker'

Am I missing something in the installation steps that I'm doing? Really appreciate all kind of help! :)

python bots