Question in regards to potential version conflct and support TF versions #1286
-
scipy==1.7.1 supported versions: (tensorflow==2.2.0 with keras==2.3.1) or (tensorflow==1.15.4 with keras==2.2.5)) file correctly,tensorflow vers 2.2.0 and scipy==1.7.1 should be able to coexist. The conflict is caused by: To fix this you could try to:
ERROR: Resolution Impossible: for help visit https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies I am assuming that something is requiring scipy==1.7.1 Out of ignorance, is there a way to see what particular package is actually calling for scipy==1.7.1? Curious if anyone else is seeing the error? Out of curiosity I tried to upgrade to tensorflow==2.3.0 # since that is what I am currently using The conflict is caused by: I was curious about the tensorflows depenency on scipy and came across this link I then went and tried to pin As an asside, the notebook example, I'm actually interested in getting working ideally with tf 2.3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @thungp Thank you very much for your interest in ART! Currently the |
Beta Was this translation helpful? Give feedback.
Hi @thungp Thank you very much for your interest in ART! Currently the
requirements.txt
file is only used to define the base versions for our CI and it is not intended to be used to install all dependencies for ART because each CI run makes selected changes to it (resolving the issues you have described above). The dependencies of ART have very large ranges and thesetup.py
provides install options to automate the installation of dependencies with more information in our Wiki: https://github.com/Trusted-AI/adversarial-robustness-toolbox/wiki/Get-Started