Skip to main content

Downloads

OpenCV on Wheels

Unofficial pre-built OpenCV packages for Python.

Installation and Usage

  1. If you have previous/other manually installed (= not installed via pip) version of OpenCV installed (e.g. cv2 module in the root of Python's site-packages), remove it before installation to avoid conflicts.

  2. Select the correct package for your environment:

    There are four different packages and you should select only one of them. Do not install multiple different packages in the same environment. There is no plugin architecture: all the packages use the same namespace (cv2). If you installed multiple different packages in the same environment, uninstall them all with pip uninstall and reinstall only one package.

    a. Packages for standard desktop environments (Windows, macOS, almost any GNU/Linux distribution)

    • run pip install opencv-python if you need only main modules
    • run pip install opencv-contrib-python if you need both main and contrib modules (check extra modules listing from OpenCV documentation)

    b. Packages for server (headless) environments

    These packages do not contain any GUI functionality. They are smaller and suitable for more restricted environments.

    • run pip install opencv-python-headless if you need only main modules
    • run pip install opencv-contrib-python-headless if you need both main and contrib modules (check extra modules listing from OpenCV documentation)
  3. Import the package:

    import cv2

    All packages contain haarcascade files. cv2.data.haarcascades can be used as a shortcut to the data folder. For example:

    cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml")

  4. Read OpenCV documentation

  5. Before opening a new issue, read the FAQ below and have a look at the other issues which are already open.

Frequently Asked Questions

Q: Do I need to install also OpenCV separately?

A: No, the packages are special wheel binary packages and they already contain statically built OpenCV binaries.

Q: Pip fails with Could not find a version that satisfies the requirement ...?

A: Most likely the issue is related to too old pip and can be fixed by running pip install --upgrade pip. Note that the wheel (especially manylinux) format does not currently support properly ARM architecture so there are no packages for ARM based platforms in PyPI. However, opencv-python packages for Raspberry Pi can be found from https://www.piwheels.org/.

Q: Import fails on Windows: ImportError: DLL load failed: The specified module could not be found.?

A: If the import fails on Windows, make sure you have Visual C++ redistributable 2015 installed. If you are using older Windows version than Windows 10 and latest system updates are not installed, Universal C Runtime might be also required.

Windows N and KN editions do not include Media Feature Pack which is required by OpenCV. If you are using Windows N or KN edition, please install also Windows Media Feature Pack.

If the above does not help, check if you are using Anaconda. Old Anaconda versions have a bug which causes the error, see this issue for a manual fix.

If you still encounter the error after you have checked all the previous solutions, download Dependencies and open the cv2.pyd (located usually at C:\Users\username\AppData\Local\Programs\Python\PythonXX\Lib\site-packages\cv2) file with it to debug missing DLL issues.

Q: I have some other import errors?

A: Make sure you have removed old manual installations of OpenCV Python bindings (cv2.so or cv2.pyd in site-packages).

Q: Why the packages do not include non-free algorithms?

A: Non-free algorithms such as SIFT and SURF are not included in these packages because they are patented and therefore cannot be distributed as built binaries. See this issue for more info: https://github.com/skvark/opencv-python/issues/126

Q: Why the package and import are different (opencv-python vs. cv2)?

A: It's easier for users to understand opencv-python than cv2 and it makes it easier to find the package with search engines. cv2 (old interface in old OpenCV versions was named as cv) is the name that OpenCV developers chose when they created the binding generators. This is kept as the import name to be consistent with different kind of tutorials around the internet. Changing the import name or behaviour would be also confusing to experienced users who are accustomed to the import cv2.

Documentation for opencv-python

AppVeyor CI test status (Windows) Travis CI test status (Linux and OS X)

The aim of this repository is to provide means to package each new OpenCV release for the most used Python versions and platforms.

Build process

The project is structured like a normal Python package with a standard setup.py file. The build process for a single entry in the build matrices is as follows (see for example appveyor.yml file):

  1. In Linux and MacOS build: get OpenCV's optional C dependencies that we compile against

  2. Checkout repository and submodules

    • OpenCV is included as submodule and the version is updated manually by maintainers when a new OpenCV release has been made
    • Contrib modules are also included as a submodule
  3. Find OpenCV version from the sources

  4. Install Python dependencies

    • setup.py installs the dependencies itself, so you need to run it in an environment where you have the rights to install modules with Pip for the running Python
  5. Build OpenCV

    • tests are disabled, otherwise build time increases too much
    • there are 4 build matrix entries for each build combination: with and without contrib modules, with and without GUI (headless)
    • Linux builds run in manylinux Docker containers (CentOS 5)
  6. Rearrange OpenCV's build result, add our custom files and generate wheel

  7. Linux and macOS wheels are transformed with auditwheel and delocate, correspondingly

  8. Install the generated wheel

  9. Test that Python can import the library and run some sanity checks

  10. Use twine to upload the generated wheel to PyPI (only in release builds)

Steps 1--5 are handled by setup.py bdist_wheel.

The build can be customized with environment variables. In addition to any variables that OpenCV's build accepts, we recognize:

  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

Licensing

Opencv-python package (scripts in this repository) is available under MIT license.

OpenCV itself is available under 3-clause BSD License.

Third party package licenses are at LICENSE-3RD-PARTY.txt.

All wheels ship with FFmpeg licensed under the LGPLv2.1.

Linux and MacOS wheels ship with Qt 4.8.7 licensed under the LGPLv2.1.

Versioning

find_version.py script searches for the version information from OpenCV sources and appends also a revision number specific to this repository to the version string.

Releases

A release is made and uploaded to PyPI when a new tag is pushed to master branch. These tags differentiate packages (this repo might have modifications but OpenCV version stays same) and should be incremented sequentially. In practice, release version numbers look like this:

cv_major.cv_minor.cv_revision.package_revision e.g. 3.1.0.0

Development builds

Every commit to the master branch of this repo will be built. Possible build artifacts use local version identifiers:

cv_major.cv_minor.cv_revision+git_hash_of_this_repo e.g. 3.1.0+14a8d39

These artifacts can't be and will not be uploaded to PyPI.

Manylinux wheels

Linux wheels are built using manylinux. These wheels should work out of the box for most of the distros (which use GNU C standard library) out there since they are built against an old version of glibc.

The default manylinux images have been extended with some OpenCV dependencies. See Docker folder for more info.

Supported Python versions

Python 2.7 is the only supported version in 2.x series. Python 2.7 support will be dropped in the end of 2019.

Python 3.x releases are provided for officially supported versions (not in EOL).

Currently, builds for following Python versions are provided:

  • 2.7
  • 3.5
  • 3.6
  • 3.7
  • 3.8

Release files for opencv-python 4.1.2.30

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for opencv-python 4.1.2.30
File
opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
opencv_python-4.1.2.30-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
opencv_python-4.1.2.30-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
opencv_python-4.1.2.30-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
opencv_python-4.1.2.30-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
opencv_python-4.1.2.30-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
opencv_python-4.1.2.30-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
opencv_python-4.1.2.30-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
opencv_python-4.1.2.30-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
opencv_python-4.1.2.30-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
opencv_python-4.1.2.30-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
opencv_python-4.1.2.30-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
opencv_python-4.1.2.30-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
opencv_python-4.1.2.30-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_python-4.1.2.30-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_python-4.1.2.30-cp27-cp27m-macosx_10_9_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 812.1 MB

Release files / opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl

Download URL opencv_python-4.1.2.30-cp38-cp38-win_amd64.whl
Size 33.0 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
f0af656402b73ead2d9f593c2774c04b01e2d0c63e4f99e0dc2f3fde99be22b4
BLAKE2b-256 checksum
How to use checksums
7098b7143877dc53467deea6ba74f9161794db5f23698a6dbded5a9718f89d9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

Release files / opencv_python-4.1.2.30-cp38-cp38-win32.whl

Download URL opencv_python-4.1.2.30-cp38-cp38-win32.whl
Size 24.2 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
67a236db8db84d7fb0f6e127f360ce6669350ef324839132e22879ec90588dab
BLAKE2b-256 checksum
How to use checksums
45c19f05d7958748d0cc579992ae77876d14f251b17cdb61cc90f3b17ef3692e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

Release files / opencv_python-4.1.2.30-cp38-cp38-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp38-cp38-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5fec35916a6b9ce935f2e2806084303fd4e3fbb0c973a8db8f54b5aca54613cb
BLAKE2b-256 checksum
How to use checksums
9c6f220c45977e6f85cbe63cd978c5cb774aa7c71ef9fb52b45f69c2611af010
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp38-cp38-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp38-cp38-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d64428bf59ab4d27620b00a2ad6fea2b4d62016a17849c82a7517ec12db97d55
BLAKE2b-256 checksum
How to use checksums
cde2d49fe394872f7af558e23b7714a4f30ae8e6d8c93f253546a823d472d233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp38-cp38-macosx_10_9_x86_64.whl

Download URL opencv_python-4.1.2.30-cp38-cp38-macosx_10_9_x86_64.whl
Size 45.2 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bb59f98205cd81e29f45eed043cf0f98531486dc0b3f671c9e06fecf08f7ccef
BLAKE2b-256 checksum
How to use checksums
c8e8bcef356c7f89433a5f4e631bbe898d03ba79d1c06a5d779829a10ddf16e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

Release files / opencv_python-4.1.2.30-cp37-cp37m-win_amd64.whl

Download URL opencv_python-4.1.2.30-cp37-cp37m-win_amd64.whl
Size 33.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
6183c9c7fab4590e0651bc941cde780988c3ad9889bd62de19d581a6f59523ea
BLAKE2b-256 checksum
How to use checksums
7441b01f308ca4a22c8c368ed4ee80ef5318efe2f221cd0024a3a0ee9df6a94d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

Release files / opencv_python-4.1.2.30-cp37-cp37m-win32.whl

Download URL opencv_python-4.1.2.30-cp37-cp37m-win32.whl
Size 24.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e2ffa3161b8662112f1880734e8b9549d0c9e818e59f652a9d1c5bf31e36586a
BLAKE2b-256 checksum
How to use checksums
4a89609a4c8f13dc0d29a02de285ddb318d7b033a05d6420a238ddf84ac5b4a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

Release files / opencv_python-4.1.2.30-cp37-cp37m-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp37-cp37m-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
eae543b3e9253ff702103333aabd87736b5ed5e46ab834d8e0b929f08f494dee
BLAKE2b-256 checksum
How to use checksums
d83860de02a4c9013b14478a3f681a62e003c7489d207160a4d7df8705a682e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp37-cp37m-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp37-cp37m-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9d025e6bf2989bcbc7744c26d8bd90c2629a92d8de3ba2416f62ce2a94615dd9
BLAKE2b-256 checksum
How to use checksums
bc9beba025d49d3a09751a5fef7cf46aa2c10753a6a19359c58bff366a47ba8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL opencv_python-4.1.2.30-cp37-cp37m-macosx_10_9_x86_64.whl
Size 45.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c8119248457e909dcd7b598621ed1d139419d69377e8cb4e2b2c49c819de287d
BLAKE2b-256 checksum
How to use checksums
bfd82422f90a596fc90d3027415121221f7cfb2513af8fd2a66203864941fabf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

Release files / opencv_python-4.1.2.30-cp36-cp36m-win_amd64.whl

Download URL opencv_python-4.1.2.30-cp36-cp36m-win_amd64.whl
Size 33.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
1c7d235faef511aca7669f1aa650897b6c058dfde6412ea3fc58feb0fce78814
BLAKE2b-256 checksum
How to use checksums
fc3cf0ac5c2c73df30483e3677b6568ccd19d900a6f78a95bfcf20bbbb468986
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

Release files / opencv_python-4.1.2.30-cp36-cp36m-win32.whl

Download URL opencv_python-4.1.2.30-cp36-cp36m-win32.whl
Size 24.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
499a0413e7110a934ab56e635252a4c86f8be64de59f94a62318a7b895dc809e
BLAKE2b-256 checksum
How to use checksums
002a09a96ee4b2bf3ac72601325e05f21318ae06a98c24eee882bd4d03d2ba61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

Release files / opencv_python-4.1.2.30-cp36-cp36m-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp36-cp36m-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
919d5c3ec1a62258ba8c68b869b1056186e2355c4474739b199c295547e66cc1
BLAKE2b-256 checksum
How to use checksums
c0a99828dfaf93f40e190ebfb292141df6b7ea1a2d57b46263e757f52be8589f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp36-cp36m-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp36-cp36m-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
982d4e80c14356098cde57a6c7d18fe0928a1c3118675bac2252ef38f152e1ab
BLAKE2b-256 checksum
How to use checksums
24597a52b30058b89380bcf0cb09453da9a48518d0c8b1d38805bfa78af327eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL opencv_python-4.1.2.30-cp36-cp36m-macosx_10_9_x86_64.whl
Size 45.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5f2cf5a0ab244a0a1dbe5ec426c277b55e06ac6a472ad61be77ef643a238cbd3
BLAKE2b-256 checksum
How to use checksums
e2a9cd3912ca0576ea6588095dce55e54c5f0efeb3d63fb88f16f4c06c0fac8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

Release files / opencv_python-4.1.2.30-cp35-cp35m-win_amd64.whl

Download URL opencv_python-4.1.2.30-cp35-cp35m-win_amd64.whl
Size 33.0 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3cef82b6a1f748d2f4527f5932a86d54ebd10bd89f6cf59b003c36b1015055f7
BLAKE2b-256 checksum
How to use checksums
c8434b05ebfe663c8d3d9cf91982feb1b4c61f692b1e3caa984ebd60fdcc2eea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

Release files / opencv_python-4.1.2.30-cp35-cp35m-win32.whl

Download URL opencv_python-4.1.2.30-cp35-cp35m-win32.whl
Size 24.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e6fc00ac42c800fad5fb3927cfb9bf4e60bb3302cb9805f45b826d5d2546119a
BLAKE2b-256 checksum
How to use checksums
8adfc692e741e1489ee30f88f5fb21f88166df3497e0df677d670cb9edf98f2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

Release files / opencv_python-4.1.2.30-cp35-cp35m-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp35-cp35m-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
76de8a247970d150b1672c6646cda91217d562682e713721fc9b9bf1434553c4
BLAKE2b-256 checksum
How to use checksums
59dcf4a3c35673512e3bfaa48c4e3b6c1bc3e262a8a2bfc9ffef986780d15ad3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp35-cp35m-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp35-cp35m-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
73a467a78ffd902d2c0265ab6b2e2cdda423d61b3d08685e0c7d0b4572142ff1
BLAKE2b-256 checksum
How to use checksums
28bab865f0cc14d7537a5bcb353217a9143dbfbd8b51745025f259e4b0f397b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
25127990671dc8bd27ae8b880d7a39f9aae863052a8fbebe8977c6ce8e5fc0c9
BLAKE2b-256 checksum
How to use checksums
7381ee64edfa0331eb975e48d38ad4ea60e92c653aac28db6a5561ebae57f2e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp27-cp27mu-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
04bec0a6d3a00360a7fb769b755ff4489a4ac8291821b785151f63e6d8bb59ea
BLAKE2b-256 checksum
How to use checksums
0dcbbd069257b934a7c30ce4f421f6292c0a4eb715f6f5540668c1a9eef1539d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp27-cp27m-win_amd64.whl

Download URL opencv_python-4.1.2.30-cp27-cp27m-win_amd64.whl
Size 33.0 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
22c2ee5f97f85903bfb28c056566b2ecaa1d2f804b880ab39ebf94528a402992
BLAKE2b-256 checksum
How to use checksums
8af1cfcfeec9783fa065d4f321870b4a0c17c4aa772f8737952f7c2972b6f929
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

Release files / opencv_python-4.1.2.30-cp27-cp27m-win32.whl

Download URL opencv_python-4.1.2.30-cp27-cp27m-win32.whl
Size 24.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
6c32d36f52a6e0c02d1ab0bb95223cb4dd5525a7e8292a747116126b3d34c578
BLAKE2b-256 checksum
How to use checksums
b7da77af5c987bbcf44539b190222ec1b9a2e01552ab95d5b7c50a3ad4109026
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

Release files / opencv_python-4.1.2.30-cp27-cp27m-manylinux1_x86_64.whl

Download URL opencv_python-4.1.2.30-cp27-cp27m-manylinux1_x86_64.whl
Size 28.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ce7b1f25be04b04f2e678b2bf23a975137f77406dcee66a88a2daeb77cda3e76
BLAKE2b-256 checksum
How to use checksums
0cb7fb21dd6d54418b44dec03a67305765a62a2d2f9ba9271ab8d0d3f86653ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp27-cp27m-manylinux1_i686.whl

Download URL opencv_python-4.1.2.30-cp27-cp27m-manylinux1_i686.whl
Size 29.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e793df2e12093b3a01006b5b27f321e306193c7a5c9e2a6c8bf652e1ad2d6a86
BLAKE2b-256 checksum
How to use checksums
e4ff55c75639d2cf4526bba8fee98b95592356cc71e11f6dce81569bbf8a2e48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.12

Release files / opencv_python-4.1.2.30-cp27-cp27m-macosx_10_9_x86_64.whl

Download URL opencv_python-4.1.2.30-cp27-cp27m-macosx_10_9_x86_64.whl
Size 45.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1a2d1801c038f055852bd2379186ca8b19b4ea24afb0b8410293bc802211579b
BLAKE2b-256 checksum
How to use checksums
d86f4f1a0ad53ced90a58b5b1e8b3a59aee021cec78450b0935ce06da4f82527
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

Release history Release notifications | RSS feed

This release

4.1.2.30 This release

26 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page