You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use osmtm2 within a docker container, and I keep getting the same error pkg_resources.ContextualVersionConflict: (six 1.12.0 (/osm-tasking-manager2/env/lib/python2.7/site-packages), Requirement.parse('six==1.11.0'), set(['transifex-client']))
I tried forcing an install of six==1.110, uninstalling six completely, and reverting back told versions of osmtm2, but nothing seems to work for me.
During the pip install -r requirements.txt step, I get the error ERROR: transifex-client 0.13.6 has requirement six==1.11.0, but you'll have six 1.12.0 which is incompatible.
My docker-compose is fairly simple:
RUN git clone --recursive git://github.com/hotosm/osm-tasking-manager2.git
WORKDIR /osm-tasking-manager2
RUN easy_install virtualenv
RUN virtualenv --no-site-packages env
RUN ./env/bin/pip install -r requirements.txt
and the Docker is based on python:2.7-jessie
The text was updated successfully, but these errors were encountered:
jimmyrocks
changed the title
ContextualVersionConflict
ContextualVersionConflict (six 1.12.0...
Jun 15, 2019
There was likely a change in the requirements mandated by the transifex client in the past year or two as they have released new versions (this repo isn't actively supported anymore, so there aren't many installs).
I am trying to use osmtm2 within a docker container, and I keep getting the same error
pkg_resources.ContextualVersionConflict: (six 1.12.0 (/osm-tasking-manager2/env/lib/python2.7/site-packages), Requirement.parse('six==1.11.0'), set(['transifex-client']))
I tried forcing an install of six==1.110, uninstalling six completely, and reverting back told versions of osmtm2, but nothing seems to work for me.
During the
pip install -r requirements.txt
step, I get the errorERROR: transifex-client 0.13.6 has requirement six==1.11.0, but you'll have six 1.12.0 which is incompatible.
My docker-compose is fairly simple:
and the Docker is based on
python:2.7-jessie
The text was updated successfully, but these errors were encountered: