ERROR: Cannot uninstall 'imageio'.
gogo9th opened this issue · 2 comments
Hi,
I am trying to install on Ubuntu 19.04 your program by following this instruction:
https://github.com/chenxinhua/faceit_live
But when I run docker-compose build, I get the following error:
ERROR: Cannot uninstall 'imageio'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
Could you please help me solve the issue...? Thanks very much.
Not sure if you will have problems with different versions but you can give it a try with "--ignore-installed" option for pip install -r requirements.txt
in Dockerfile like pip install --ignore-installed -r requirements.txt
You may have installed it with conda
; try running conda remove imageio
first (if you don't need it for something else).