Error when installing with imageio
See original GitHub issueExpected Behavior
To install moviepy properly
Actual Behavior
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?
Steps to Reproduce the Problem
install Python3.6.3 from source Then install moviepy
Specifications
- Python Version: 3.6.3
- Moviepy Version: 1.0.0
- Platform Name: Amazon Linux 2 AMI
- Platform Version: 4.14.88-88.76.amzn2.x86_64
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:8 (1 by maintainers)
Top Results From Across the Web
cannot import module imageio in python3 - Stack Overflow
"pip3 install imageio" both running as myself and as root. The install succeeded, but it still errors out as in the subject line....
Read more >ModuleNotFoundError: No module named 'imageio' in Python
To solve the error, install the module by running the pip install imageio command. modulenotfounderror no module named imageio.
Read more >Installing imageio — imageio 2.6.1 documentation
Imageio is written in pure Python, so installation is easy. Imageio works on Python 2.7 and 3.4+. ... To install imageio, use one...
Read more >ModuleNotFoundError: No module named 'imageio.v3'
I have Anaconda3 installed and tried it within Spyder, Jupyter Notebook and VSC. The import of openpiv.tools doenst work and gives me the...
Read more >imageio-ffmpeg - PyPI
imageio -ffmpeg 0.4.7. pip install imageio-ffmpeg ... For Linux users: the above is not the case when installing via your Linux package manager...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Well I solved my problem by not using moviepy 1.0.0 😅 namely:
Ahh…
fixed the issue for me.