How to render OpenAI gym in google Colab? [closed]
Korakot’s answer is not correct. You can indeed render OpenAi Gym in colaboratory, albiet kind of slowly using none other than matplotlib. Heres how: Install xvfb & other dependencies (Thanks to Peter for his comment) !apt-get install x11-utils > /dev/null 2>&1 !pip install pyglet > /dev/null 2>&1 !apt-get install -y xvfb python-opengl > /dev/null 2>&1 … Read more