diff --git a/README.md b/README.md index 64800945..0acd7599 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,10 @@ source .venv/bin/activate pip install "sheeprl @ git+https://github.com/Eclectic-Sheep/sheeprl.git" # or, to install with atari and mujuco environment support, do pip install "sheeprl[atari,mujoco,dev] @ git+https://github.com/Eclectic-Sheep/sheeprl.git" +# or, to install with minedojo environment support, do +pip install "sheeprl[minedojo,dev] @ git+https://github.com/Eclectic-Sheep/sheeprl.git" # or, to install all extras, do -pip install "sheeprl[atari,mujoco,dev,test] @ git+https://github.com/Eclectic-Sheep/sheeprl.git" +pip install "sheeprl[atari,mujoco,miedojo,dev,test] @ git+https://github.com/Eclectic-Sheep/sheeprl.git" ``` @@ -81,6 +83,8 @@ pip install "sheeprl[atari,mujoco,dev,test] @ git+https://github.com/Eclectic-S > **Note** > > if you are on an M-series mac and encounter an error attributed box2dpy during install, you need to install SWIG using the instructions shown below. +> +> if you want to install the minedojo environment support, Java JDK 8 is required: you can install it by following the instructions at this [link](https://docs.minedojo.org/sections/getting_started/install.html#on-ubuntu-20-04).
Installing SWIG diff --git a/pyproject.toml b/pyproject.toml index 109b8185..8fbde727 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,7 @@ atari = [ "gymnasium[accept-rom-license]==0.28.*", "gymnasium[other]==0.28.*", ] +minedojo = ["minedojo==0.1"] [tool.ruff] line-length = 120