gym-soccer icon indicating copy to clipboard operation
gym-soccer copied to clipboard

Results 12 gym-soccer issues
Sort by recently updated
recently updated
newest added

I ran these codes:`!pip install -e git+https://github.com/cycraig/gym-soccer#egg=gym_soccer` **in Google Colab** here is an error: `Obtaining gym_soccer from git+https://github.com/cycraig/gym-soccer#egg=gym_soccer Updating ./src/gym-soccer clone Running command git fetch -q --tags Running command git...

add package information in `setup.py`, otherwise, there is no any python file after `pip install .`

https://github.com/openai/gym-soccer/blob/dff241967ae0c1ea719d889cf9d88a37608944a2/gym_soccer/envs/soccer_empty_goal.py#L65 Is this reward being output even though the agent has not actually kicked the ball?

I am getting the following error on installation. ` running install running build fatal: destination path 'hfo_py' already exists and is not an empty directory. Could not build hfo-py: Command...

`pip install gym-soccer` indicates that there's no matching package. `pip install -e .` in the repo folder returns this error :( ``` Requirement already satisfied: gym>=0.2.3 in /Users/QV/code-project/learn/reinforcement_learning/venv/lib/python3.5/site-packages (from gym-soccer==0.0.1)...

The introduction of [gym-soccer](https://gym.openai.com/envs/Soccer-v0) says > The Soccer environment is a multiagent domain featuring continuous state and action spaces. However, currently the gym-soccer only supports: offense_agents=1, defense_agents=0, offense_npcs=0, defense_npcs=0 Could...

env: SoccerAgainstKeeper-v0 register error.

I have installed gym-soccer and I want to create the gym-soccer environment by running: import gym env = gym.make('Soccer-v0') but it failed. What's the problem? I didn't find any examples...