The DI RemoteCameraRobot project lists werkzeug 0.14.1 as a requirement, about which Git just sent a “Security Alert” suggesting version 0.15.3.
I checked python (2.7) and it shows
Python 2.7.13 (default, Sep 26 2018, 18:42:22)
...
>>> import werkzeug
>>> print werkzeug.__version__
0.15.4
>>>
but python3 shows the old version:
Python 3.5.3 (default, Sep 27 2018, 17:25:39)
...
>>> import werkzeug
>>> print(werkzeug.__version__)
0.14.1
>>>
I cannot upgrade the python3 module because my pip3 seems to be broken:
pip3 freeze
Traceback (most recent call last):
File "/usr/local/bin/pip3", line 6, in <module>
from pkg_resources import load_entry_point
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 3126, in <module>
@_call_aside
...
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 784, in resolve
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'pip==19.1.1' distribution was not found and is required by the application
Any ideas how to fix?