From 4107704d9aead2d9dc5ad4b5d031a769e49fb4f5 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Thu, 12 Oct 2023 17:01:51 +0200 Subject: [PATCH] Fix install instructions (look in both Test-PyPI & PyPI) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c4b274..bb7e895 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,17 @@ While the overarching objective of MP environments remains the learning of an op While the publication of `fancy_gym` on PyPI is still pending, you can install it from Test-PyPI. ```bash -pip install --index-url https://test.pypi.org/simple/ fancy_gym +pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple fancy_gym ``` We have a few optional dependencies. If you also want to install those use ```bash # to install all optional dependencies -pip install --index-url https://test.pypi.org/simple/ 'fancy_gym[all]' +pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple 'fancy_gym[all]' # or choose only those you want -pip install --index-url https://test.pypi.org/simple/ 'fancy_gym[dmc,box2d,mujoco-legacy,jax,testing]' +pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple '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.