Description
I am trying to install the dependencies in requirements.txt yet I've encountered the following error. Could you take a look at it?
I followed this instruction on README
conda create -n [your_name] python=3.7
source activate [your_name]
pip install -r requirements.txt
Error
ERROR: Cannot install -r requirements.txt (line 34) and imageio==2.4.1 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested imageio==2.4.1
moviepy 1.0.1 depends on imageio<3.0 and >=2.5
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies
Description
I am trying to install the dependencies in
requirements.txtyet I've encountered the following error. Could you take a look at it?I followed this instruction on README
conda create -n [your_name] python=3.7 source activate [your_name] pip install -r requirements.txtError
ERROR: Cannot install -r requirements.txt (line 34) and imageio==2.4.1 because these package versions have conflicting dependencies. The conflict is caused by: The user requested imageio==2.4.1 moviepy 1.0.1 depends on imageio<3.0 and >=2.5 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies