I'm creating a project that has dependencies on packages from PyPI. Namely :
['comtypes', 'docx', 'qrcode', 'PyPDF2', 'pyqtgraph', 'PyQt5', 'numpy', 'PIL','opencv-python']
However, some of these (for example opencv-python
) only contain wheel files on PyPI. https://pypi.python.org/simple/opencv-python/
From my understanding, setuptools is not compatible with .whl
. Is there any way to install the dependencies from a setup.py
, ideally without the use of pip?
Download the .whl file and run
on the terminal/cmd/powershell