Hi everyone,
I was wondering whether has anyone successfully installed and set up the flatland env on the google colab?
I have tried to install it directly on the google collab without using Conda however so far I have not been successful.
This is the code I have been using for installing the environment.
!pip install importlib-metadata==0.23
!pip install importlib-resources==1.5.0
!pip install CairoSVG
!pip install tk
%cd /content/
!git clone https://gitlab.aicrowd.com/flatland/flatland.git
%cd /content/flatland
!python setup.py install
!pip install msgpack-numpy
!pip install recordtype
with this code I have been able to install the flatland env, however as I am trying to replicate the basic usage results, I keep getting empty obs from the step function:
>>> env.step(_action)
({},
{},
{0: False, '__all__': True},
{'action_required': {}, 'malfunction': {}, 'speed': {}, 'status': {}})
tnx.