To install moviepy properly
when trying to install it notifies that
moviepy 1.0.0 has requirement imageio<2.5,>=2.0, but you'll have imageio 2.5.0 which is incompatible.
Then I run pip3 install 'imageio<2.5,>=2.0'
After that it notifies that
moviepy 1.0.0 has requirement imageio<3.0,>=2.5, but you'll have imageio 2.4.1 which is incompatible.
Then I'm confused, does moviepy requrire 'imageio<3.0,>=2.5' or 'imageio<2.5,>=2.0' ?
Or do I need a way to install both?
install Python3.6.3 from source
Then install moviepy
Weird, I don't have this problem and the test suite says it works fine. How do you install moviepy ? Using "pip3 install moviepy" ? Could you paste the full error you get ?
I am having a similar issue in Python 2.7 in an Ubuntu 16.04 docker container.
On a fresh install, I get:
moviepy 1.0.0 has requirement imageio<3.0,>=2.5; python_version >= "3.4", but you'll have imageio 2.4.1 which is incompatible.
Ahh...
pip install --upgrade setuptools
fixed the issue for me.
I also have the same issue and have you solved it?
I also have the same issue and have you solved it?
Well I solved my problem by not using moviepy 1.0.0 馃槄
namely:
pip3 install 'moviepy<1.0.0'
hahaha, let me try
Can this be closed?
Most helpful comment
Well I solved my problem by not using moviepy 1.0.0 馃槄
namely: