Skip to content

Commit

Permalink
Add single quotes around all pip install extras (#1154)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottower authored Jan 17, 2024
1 parent fd86cf8 commit ada1691
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To install the base PettingZoo library: `pip install pettingzoo`.

This does not include dependencies for all families of environments (some environments can be problematic to install on certain systems).

To install the dependencies for one family, use `pip install pettingzoo[atari]`, or use `pip install pettingzoo[all]` to install all dependencies.
To install the dependencies for one family, use `pip install 'pettingzoo[atari]'`, or use `pip install 'pettingzoo[all]'` to install all dependencies.

We support Python 3.8, 3.9, 3.10 and 3.11 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.

Expand Down
2 changes: 1 addition & 1 deletion docs/environments/atari.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The Atari environments are based off the [Arcade Learning Environment](https://g
The unique dependencies for this set of environments can be installed via:

````bash
pip install pettingzoo[atari]
pip install 'pettingzoo[atari]'
````

Install ROMs using [AutoROM](https://github.com/Farama-Foundation/AutoROM), or specify the path to your Atari rom using the `rom_path` argument (see [Common Parameters](#common-parameters)).
Expand Down
2 changes: 1 addition & 1 deletion docs/environments/butterfly.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Environments are highly configurable via arguments specified in their respective
The unique dependencies for this set of environments can be installed via:

````bash
pip install pettingzoo[butterfly]
pip install 'pettingzoo[butterfly]'
````

### Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/environments/classic.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Classic environments represent implementations of popular turn-based human games
The unique dependencies for this set of environments can be installed via:

````bash
pip install pettingzoo[classic]
pip install 'pettingzoo[classic]'
````

### Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/environments/mpe.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These environments are from [OpenAI's MPE](https://github.com/openai/multiagent-
The unique dependencies for this set of environments can be installed via:

````bash
pip install pettingzoo[mpe]
pip install 'pettingzoo[mpe]'
````

### Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/environments/sisl.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The SISL environments are a set of three cooperative multi-agent benchmark envir
The unique dependencies for this set of environments can be installed via:

````bash
pip install pettingzoo[sisl]
pip install 'pettingzoo[sisl]'
````

### Usage
Expand Down

0 comments on commit ada1691

Please sign in to comment.