IntelLabs / coach

Reinforcement Learning Coach by Intel AI Lab enables easy experimentation with state of the art Reinforcement Learning algorithms
https://intellabs.github.io/coach/
Apache License 2.0
2.32k stars 460 forks source link

Dependency issue #300

Closed pcriadoperez closed 5 years ago

pcriadoperez commented 5 years ago

Installation is failing with this dependency issue:

requests 2.18.4 has requirement urllib3<1.23,>=1.21.1, but you'll have urllib3 1.25 which is incompatible.
kubernetes 8.0.1 has requirement urllib3>=1.23, but you have urllib3 1.22.
gal-leibovich commented 5 years ago

I get a slightly modified version of this error - ERROR: requests 2.21.0 has requirement urllib3<1.25,>=1.21.1, but you'll have urllib3 1.25 which is incompatible.

It can be work-arounded by editing requirements.txt and freezing urllib3 to version 1.24.2, by adding the following line - urllib3==1.24.2

requests is required by gym, and urllib3 >= 1.23 is requested by kubernetes.

galnov commented 5 years ago

This was fixed on requests v2.22.0, so no failure now.