From 49ac56ad2c8b15caa784d50e9c5ed72d1f450e9e Mon Sep 17 00:00:00 2001 From: Alessandro <aleite@lisn.fr> Date: Wed, 22 Sep 2021 09:09:55 +0200 Subject: [PATCH] Add the dependency to the gym library * Include a conda environment file * To create a new environment execute: - conda env create -f environment.yml --- environment.yml | 31 +++++++++++++++++++++++++++++++ requirements.txt | 2 ++ requirements_with_pygraphviz.txt | 2 ++ 3 files changed, 35 insertions(+) create mode 100644 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..6f264bf --- /dev/null +++ b/environment.yml @@ -0,0 +1,31 @@ +name: xgprl +channels: + - defaults + - conda-forge +dependencies: + - python==3.8 + - cycler==0.10.0 + - pandas==1.3.3 + - matplotlib==3.4.3 + - numpy==1.21.2 + - pygraphviz==1.7 + - pyparsing==2.4.7 + - python-dateutil==2.8.2 + - pyyaml==5.4.1 + - scikit-learn==0.24.2 + - scipy==1.7.1 + - six==1.16.0 + - threadpoolctl==2.2.0 + - typing-extensions==3.10.0.2 + - pip + - pip: + - deap==1.3.1 + - joblib==1.0.1 + - kiwisolver==1.3.2 + - pillow==8.3.2 + - psutil==5.8.0 + - pytz==2021.1 + - sklearn==0.0 + - qdpy==0.1.2.1 + - gym==0.20.0 + - git+https://github.com/benelot/pybullet-gym \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 752cf9c..b48e705 100644 --- a/requirements.txt +++ b/requirements.txt @@ -59,3 +59,5 @@ threadpoolctl==2.2.0 # via scikit-learn typing-extensions==3.10.0.2 # via qdpy +gym==0.20.0 +git+https://github.com/benelot/pybullet-gym diff --git a/requirements_with_pygraphviz.txt b/requirements_with_pygraphviz.txt index c9fe93a..5c2ee8b 100644 --- a/requirements_with_pygraphviz.txt +++ b/requirements_with_pygraphviz.txt @@ -61,3 +61,5 @@ threadpoolctl==2.2.0 # via scikit-learn typing-extensions==3.10.0.2 # via qdpy +gym==0.20.0 +git+https://github.com/benelot/pybullet-gym -- GitLab