Search code examples
pythonpipraspberry-pi3openai-gym

How to install universe on rpi


As the title states. I want to install universe on my raspberry pi 3. I want to code a learning gamebot

I have tried:

Pip install universe

But it returns errors.

Help pls


Solution

  • You need to install numpy and golang first and then install universe package.

    Run following command first: (for ubuntu)

    pip install numpy
    sudo apt-get install golang libjpeg-turbo8-dev make
    

    and then run:

    pip install universe
    

    Ref:

    https://pypi.org/project/universe/