Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add single quotes around all pip install extras #1154

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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