pkweitai / hummingbotAI

Hummingbot AI enablement contributions from community
Other
5 stars 0 forks source link

[BUG] Setup instructions is missing hbotrc step #7

Closed martinkou closed 4 months ago

martinkou commented 4 months ago

When the current installation instruction is followed, starting aihbot.py will result in the following error

(hummingbot-ai) martin_kou@dweomerheart:~/Development/hummingbotAI$ python aihbot.py 
Traceback (most recent call last):
  File "/home/martin_kou/Development/hummingbotAI/aihbot.py", line 13, in <module>
    from hbotrc import BotListener
ModuleNotFoundError: No module named 'hbotrc'

This is caused by the missing installation instructions for the hbotrc package - which is included in the hbot-remote-client @ 5fa09e9 submodule.

The setup instructions should include the following additional steps:

  1. git submodule update --init to fetch the submodule;
  2. cd hbot-remote-client && pip install . to install hbotrc from the submodule.
pkweitai commented 4 months ago

updated readme. thanks!