tarball downloaded via pip install
See original GitHub issueI am not sure yet who to blame, but the wheel is not always downloaded via pip install imageio-ffmpeg
.
This combination for example downloaded the tar ball instead.
pip==18.1
(previous major release)wheel==0.32.0
(latest)imageio-ffmpeg==0.2.0
Demo in docker for a 100% clean environment:
$ docker run --rm --tty python:3.7 bash -c "\
pip install pip==18.1 wheel==0.33.0 \
&& pip install imageio-ffmpeg==0.2.0 \
&& find /usr/local/lib/python3.7/site-packages/imageio_ffmpeg/binaries/"
# <snip>
# /usr/local/lib/python3.7/site-packages/imageio_ffmpeg/binaries/
# /usr/local/lib/python3.7/site-packages/imageio_ffmpeg/binaries/README.md
Related issue: https://github.com/Zulko/moviepy/issues/906
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to install Python packages from the tar.gz file without ...
First needed to unpack the tar.gz file into a folder. · Then before running python setup.py install had to point cmd towards the...
Read more >How to use pip install with local tar.gz source file? - Packaging
Is it possible to do a pip install by specifying the local tar.gz file to use to test if building and installation works...
Read more >download-tarball - PyPI
Automates manual Python library installation through the PyPi tar.gz tarball. If no tarball is found, the program will look for next available ....
Read more >Using Packages
In this case, it found one; but what if you want to install a package that hasn't been uploaded to PyPI? You have...
Read more >pypi-download-tarball - Python Package Health Analysis - Snyk
pypi-download-tarball · Automates manual installation of Python modules. For more information about how to use this package see README · Popularity · Security....
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
You could add
setup_requires=['pip>19']
I added a note to the readme.