Metadata-Version: 2.1
Name: gym_super_mario_bros
Version: 0.4.0
Summary: Super Mario Bros. for Open.ai Gym
Home-page: https://github.com/Kautenja/gym-super-mario-bros
Author: Christian Kauten
Author-email: kautencreations@gmail.com
License: MIT
Description: # OpenAI Gym - Super Mario Bros
        
        ![smb](https://user-images.githubusercontent.com/2184469/39209488-854e960c-47cb-11e8-9e66-ddadcb0d7874.png)
        
        An [OpenAI Gym](https://github.com/openai/gym) environment for the original
        Super Mario Bros. game on the Nintendo Entertainment System (NES).
        
        # Installation
        
        The preferred installation of `gym-super-mario-bros` is from `pip`:
        
        ```shell
        pip install gym-super-mario-bros
        ```
        
        ## NES Emulator
        
        NESGym uses [FCEUX](http://www.fceux.com/web/home.html) to emulate NES games.
        Make sure it's installed and in your `$PATH`.
        
        ### Unix
        
        ```shell
        sudo apt-get install fceux
        ```
        
        ### Mac
        
        ```shell
        brew install fceux
        ```
        
        # Usage
        
        ```python
        import gym_super_mario_bros
        env = gym_super_mario_bros.make('SuperMarioBros-v0')
        
        done = True
        for step in range(5000):
            if done:
                state = env.reset()
            state, reward, done, info = env.step(env.action_space.sample())
        
        env.close()
        ```
        
        **NOTE:** `gym_super_mario_bros.make` is just an alias to `gym.make` for
        convenience.
        
        
Keywords: OpenAI-Gym NES Super-Mario-Bros Reinforcement-Learning-Environment
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
