I am trying to import this package (https://github.com/kandouss/marlgrid) in my script, by doing the following:
from setuptools import setup, find_packages
setup(
name="marlgrid",
version="0.0.5",
packages=find_packages(),
install_requires=["numpy", "tqdm", "gym", "gym-minigrid", "numba"],
)
import numpy as np
import marlgrid
from marlgrid.rendering import InteractivePlayerWindow
from marlgrid.agents import GridAgentInterface
from marlgrid.envs import env_from_config
However, I receive this error:
Traceback (most recent call last):
File "C:\Users\bolot\anaconda3\lib\distutils\core.py", line 134, in setup
ok = dist.parse_command_line()
File "C:\Users\bolot\anaconda3\lib\distutils\dist.py", line 501, in parse_command_line
raise DistutilsArgError("no commands supplied")
DistutilsArgError: no commands supplied
During handling of the above exception, another exception occurred:
SystemExit: usage: temp.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: temp.py --help [cmd1 cmd2 ...]
or: temp.py --help-commands
or: temp.py cmd --help
error: no commands supplied
Could you please help?
Thanks!