Installation
Note
We recommend installing fancy_gym
into a virtual environment as
provided by venv. 3rd
party alternatives to venv like Poetry
or Conda can also be used.
Installation from PyPI (recommended)
Install fancy_gym
via
pip install fancy_gym
We have a few optional dependencies. If you also want to install those use
# to install all optional dependencies
pip install 'fancy_gym[all]'
# or choose only those you want
pip install 'fancy_gym[dmc,box2d,mujoco-legacy,jax,testing]'
Pip can not automatically install up-to-date versions of metaworld, since they are not avaible on PyPI yet. Install metaworld via
pip install metaworld@git+https://github.com/Farama-Foundation/Metaworld.git@c822f28f582ba1ad49eb5dcf61016566f28003ba#egg=metaworld
Installation from master
Clone the repository
git clone git@github.com:ALRhub/fancy_gym.git
Go to the folder
cd fancy_gym
Install with
pip install -e .
We have a few optional dependencies. If you also want to install those use
# to install all optional dependencies
pip install -e '.[all]'
# or choose only those you want
pip install -e '.[dmc,box2d,mujoco-legacy,jax,testing]'
Metaworld has to be installed manually with
pip install metaworld@git+https://github.com/Farama-Foundation/Metaworld.git@c822f28f582ba1ad49eb5dcf61016566f28003ba#egg=metaworld