|
|
发表于 2019-12-30 11:45:36
|
显示全部楼层
C:\Python3\Scripts>pip install opencv-python
Collecting opencv-python
Downloading https://files.pythonhosted.org/p ... p37-cp37m-win32.whl (24.2MB)
|████████████████████████████████| 24.2MB 38kB/s
Requirement already satisfied: numpy>=1.14.5 in c:\python3\lib\site-packages (from opencv-python) (1.16.2)
Installing collected packages: opencv-python
Successfully installed opencv-python-4.1.2.30
WARNING: You are using pip version 19.1, however version 19.3.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Python3\Scripts>python
Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 22:20:52) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2 |
|