diff --git a/binder/environment.yml b/binder/environment.yml index 58e1f65e..c56e1cf6 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -9,6 +9,6 @@ dependencies: - pandas - scipy - tensorboard>=2.13 - - tensorflow>=2.15 +# - tensorflow>=2.15 # conflicting dependencies with decomon (keras 2) - jupyter-server-proxy - .. # decomon diff --git a/binder/postBuild b/binder/postBuild index 79ab4ed0..9bbeccbe 100644 --- a/binder/postBuild +++ b/binder/postBuild @@ -1,3 +1,5 @@ +# install tensorflow backend separately from decomon (dependencies conflict as tf 2.15 requires keras 2) +pip install tensorflow>=2.15 # use keras 3 instead of keras 2 installed by tensorflow pip uninstall -y keras pip install "keras>=3"