zhouxian / act3d-chained-diffuser

A unified architecture for multimodal multi-task robotic policy learning.
117 stars 9 forks source link

Campatibility issues #5

Closed ZXP-S-works closed 11 months ago

ZXP-S-works commented 11 months ago

Hi Zhuoxian,

Amazing work!

I tried to run your code follows the steps in README, however, I got some errors with module "tap". Would you mind to tell me which tap do you installed and how do installed it?

Here are some error messages:

ModuleNotFoundError: No module named 'tap'
   except MemcachedError, e:
                         ^
SyntaxError: invalid syntax
    import exceptions
ModuleNotFoundError: No module named 'exceptions'

Best, XP

zhouxian commented 11 months ago

Maybe @nickgkan have some instruction on this?

ZXP-S-works commented 11 months ago

Hi Zhuoxian, lucky I found a Chinese blog solved this problem: https://blog.csdn.net/CCCDeric/article/details/129292190 --it needs to make several manual changes on 'tap's source code.

nickgkan commented 10 months ago

Hi, For everyone revisiting this issue in the future, "tap" here should be installed as pip install typed-argument-parser Please don't install the library "tap".

ZXP-S-works commented 10 months ago

Hi nickgkan,

Thanks for pointing out that!

XP