Skip to content
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
1 change: 1 addition & 0 deletions com.unity.ml-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ and this project adheres to
- Added no-graphics-monitor. (#6014)

#### ml-agents / ml-agents-envs
- Upgraded grpcio version. (#6208)
- Update Installation.md (#6004)
- Updated Using-Virtual-Environment.md (#6033)

Expand Down
8 changes: 0 additions & 8 deletions docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,6 @@ Note that on Windows, you may also need Microsoft's
if you don't have it already. See the [PyTorch installation guide](https://pytorch.org/get-started/locally/)
for more installation options and versions.

#### (OS X) Installing GRPC libraries

On OS X, you may need to explicitly install the GRPC runtime libraries to avoid hitting errors when training like `dlopen(/Users/alex.mccarthy/miniconda3/envs/mlagents/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-darwin.so, 0x0002): symbol not found in flat namespace '_CFRelease'`.

```sh
pip3 install grpcio
```

#### Installing `mlagents`

To install the `mlagents` Python package, activate your virtual environment and
Expand Down
2 changes: 1 addition & 1 deletion ml-agents-envs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run(self):
zip_safe=False,
install_requires=[
"cloudpickle",
"grpcio>=1.11.0,<=1.48.2",
"grpcio>=1.11.0,<=1.53.2",
"Pillow>=4.2.1",
"protobuf>=3.6,<3.21",
"pyyaml>=3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion ml-agents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run(self):
zip_safe=False,
install_requires=[
# Test-only dependencies should go in test_requirements.txt, not here.
"grpcio>=1.11.0,<=1.48.2",
"grpcio>=1.11.0,<=1.53.2",
"h5py>=2.9.0",
f"mlagents_envs=={VERSION}",
"numpy>=1.23.5,<1.24.0",
Expand Down