04.07.2020 · The stable baselines site claims they do not support tf2.X yet. So that might be your problem. Try the following, pip install tensorflow==1.14.0 pip install stable-baselines [mpi]==2.10.0. They seem to work together for me to this day (Sept 4th, 2020). I know this might be a little late but I found your question now and decided to answer it as ...
Stable-Baselines supports Tensorflow versions from 1.8.0 to 1.15.0, ... you can move straight to installing Stable-Baselines in the next step (without MPI).
“no module named tensorflow.core” Code Answer. ModuleNotFoundError: No module named 'tensorflow_core.python'. whatever by Wicked Wolf on Oct 07 2020 Comment.
03.12.2020 · ModuleNotFoundError: No module named 'tensorflow.contrib' #5. Closed tinof opened this issue Dec 4, 2020 · 7 comments Closed ... Yes, stable baselines only supports tf 1.X for now, there are some tf 2 forks, but I'm not sure if there is something far enough yet.
ModuleNotFoundError: No module named 'tensorflow.contrib' ... Yes, stable baselines only supports tf 1.X for now, there are some tf 2 forks, but I'm not sure if there is something far enough yet. hugocen hugocen OWNER Created 1 year ago.
23.10.2019 · When I ran the "Getting started" example I have the following error: "ModuleNotFoundError: No module named 'tensorflow.contrib'." Oct 24, 2019. Copy link Author Roberto7766 commented Oct 24, 2019. Hi, ... Stable-baselines supports Tensorflow versions 1.8.0 …
09.06.2019 · minimum Tensorflow version from 1.5.0 (Jan '18) to 1.14.0 (Jun '19) is a necessary intermediate step, and could be broken off as a separate issue. The plan is to raise it progressively: it will be 1.8.0 soon (see #428) to match the docker image version (which are used in the Continuous Integration tests).
10.06.2019 · The only way I can see to try and support both versions is to try and make Stable Baselines work whether tf.enable_v2_behavior() or tf.disable_v2_behavior() has been called, and let the user decide. This changes a lot (e.g. eager or non-eager), so I'd be surprised if this is possible, but worth a try.