關(guān)于pip安裝opencv-python遇到的問題
pip安裝opencv-python遇到的問題
1.控制臺出現(xiàn)這種情況就是版本過低,需要先升級版本,命令pip install -upgrade pip

2. 出現(xiàn):Script file ‘D:\Python\Anaconda3\Scripts\pip-script.py’ is not present 原因就是升級pip過程中刪除了原對應(yīng)的文件 缺少升級后的pip及對應(yīng)目錄下的pip-script的python文件,缺少什么我們就加什么文件就解決問題了。cd命令切換到Scripts文件,使用命令conda install pip
3. 重新用pip install opencv-python 使用pip list檢查安裝是否成功
樹莓派 pip安裝opencv-python的正確實踐
python -m pip install opencv-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com ? """許多教程里的代碼都是用的老版本,函數(shù)API的接口有時不一樣,如果不指定版本的話會安裝最新版本,代碼得大#幅修改,給入門增加阻力。 #安裝指定版本: pip install opencv-python==3.4.3.18 記錄備查 """
完整安裝過程如下
以后大家參考
pi@raspberrypi:~ $ python -m pip install opencv-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
Looking in indexes: http://pypi.douban.com/simple/, https://www.piwheels.org/simple
Collecting opencv-python
Downloading http://pypi.doubanio.com/packages/a1/d6/8422797e35f8814b1d9842530566a949d9b5850a466321a6c1d5a99055ee/opencv-python-4.3.0.38.tar.gz (88.0MB)
100% |████████████████████████████████| 88.0MB 1.3MB/s
Installing build dependencies ... error
Complete output from command /usr/bin/python -m pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-L6WFRh --no-warn-script-location --no-binary :none: --only-binary :none: -i http://pypi.douban.com/simple/ --extra-index-url https://www.piwheels.org/simple --trusted-host pypi.douban.com -- setuptools wheel scikit-build cmake pip "numpy==1.11.3; python_version=='3.5'" "numpy==1.13.3; python_version=='3.6'" "numpy==1.14.5; python_version=='3.7'" "numpy==1.17.3; python_version>='3.8'":
Ignoring numpy: markers 'python_version == "3.5"' don't match your environment
Ignoring numpy: markers 'python_version == "3.6"' don't match your environment
Ignoring numpy: markers 'python_version == "3.7"' don't match your environment
Ignoring numpy: markers 'python_version >= "3.8"' don't match your environment
Looking in indexes: http://pypi.douban.com/simple/, https://www.piwheels.org/simple, https://www.piwheels.org/simple
Collecting setuptools
Downloading http://pypi.doubanio.com/packages/e1/b7/182161210a13158cd3ccc41ee19aadef54496b74f2817cc147006ec932b4/setuptools-44.1.1-py2.py3-none-any.whl (583kB)
Collecting wheel
Downloading http://pypi.doubanio.com/packages/a7/00/3df031b3ecd5444d572141321537080b40c1c25e1caa3d86cdd12e5e919c/wheel-0.35.1-py2.py3-none-any.whl
Collecting scikit-build
Downloading http://pypi.doubanio.com/packages/78/c9/7c2c7397ea64e36ebb292446896edcdecbb8c1aa6b9a1a32f6f67984c3df/scikit_build-0.11.1-py2.py3-none-any.whl (72kB)
Collecting cmake
Downloading http://pypi.doubanio.com/packages/eb/0a/039d5e4c4e2cf347091fe0e3ee322413e3750a5d4bd1d4b6d8537072687a/cmake-3.18.2.post1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-install-S8P7fC/cmake/setup.py", line 7, in <module>
from skbuild import setup
ImportError: No module named skbuild
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-S8P7fC/cmake/
----------------------------------------
Command "/usr/bin/python -m pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-L6WFRh --no-warn-script-location --no-binary :none: --only-binary :none: -i http://pypi.douban.com/simple/ --extra-index-url https://www.piwheels.org/simple --trusted-host pypi.douban.com -- setuptools wheel scikit-build cmake pip "numpy==1.11.3; python_version=='3.5'" "numpy==1.13.3; python_version=='3.6'" "numpy==1.14.5; python_version=='3.7'" "numpy==1.17.3; python_version>='3.8'"" failed with error code 1 in None
pi@raspberrypi:~ $ import cv2 as cv
bash: import:未找到命令
pi@raspberrypi:~ $ python
Python 2.7.16 (default, Oct 10 2019, 22:02:15)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2 as cv
>>> print(cv.__version__)
3.2.0
>>> 總結(jié)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Python 使用ConfigParser操作ini配置文件
這篇文章主要介紹了Python 使用ConfigParser操作ini配置文件的相關(guān)資料,需要的朋友可以參考下2023-05-05
Python數(shù)學(xué)建模StatsModels統(tǒng)計回歸之線性回歸示例詳解
這篇文章主要為大家介紹了Python數(shù)學(xué)建模中StatsModels統(tǒng)計回歸之線性回歸的示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助2021-10-10
CNN卷積函數(shù)Conv2D()各參數(shù)的含義及用法解讀
這篇文章主要介紹了CNN卷積函數(shù)Conv2D()各參數(shù)的含義及用法解讀,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-02-02
跟老齊學(xué)Python之關(guān)于類的初步認(rèn)識
這篇文章主要介紹了Python中關(guān)于類的一些術(shù)語解釋,雖然有些枯燥,但是要了解類的話,這些內(nèi)容是必須的2014-10-10
Python+matplotlib實現(xiàn)繪制等高線圖示例詳解
在matplotlib.pyplot中除了可以繪制常規(guī)圖表如折線、柱狀、散點等,還可以繪制常用在地理上的平面展示地型的等高線圖,本文主要為大家介紹了如何利用matplotlib繪制等高線圖,需要的可以參考一下2021-12-12
Java實現(xiàn)的執(zhí)行python腳本工具類示例【使用jython.jar】
這篇文章主要介紹了Java實現(xiàn)的執(zhí)行python腳本工具類,結(jié)合實例形式分析了java使用jython.jar執(zhí)行Python腳本的具體操作技巧,需要的朋友可以參考下2018-03-03

