網站首頁 編程語言 正文
pip安裝opencv-python遇到的問題
1.控制臺出現這種情況就是版本過低,需要先升級版本,命令pip install -upgrade pip
2. 出現:Script file ‘D:\Python\Anaconda3\Scripts\pip-script.py’ is not present 原因就是升級pip過程中刪除了原對應的文件 缺少升級后的pip及對應目錄下的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
?
"""許多教程里的代碼都是用的老版本,函數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
>>>
總結
原文鏈接:https://blog.csdn.net/weixin_53419152/article/details/126868809
- 上一篇:沒有了
- 下一篇:沒有了
相關推薦
- 2023-05-22 python常用時間庫time、datetime與時間格式之間的轉換教程_python
- 2022-03-30 利用Python中xlwt模塊操作excel的示例詳解_python
- 2022-10-17 Python如何提取csv數據并篩選指定條件數據詳解_python
- 2023-09-17 el-tabs表格右下角按鈕被遮擋
- 2022-08-16 C++超詳細梳理基礎知識_C 語言
- 2023-03-01 Android使用AndroidUtilCode實現多語言_Android
- 2022-10-29 Clickhouse通過命令導入導出文件(在Linux命令窗口)
- 2022-11-04 C#序列化與反序列化集合對象并進行版本控制_C#教程
- 欄目分類
-
- 最近更新
-
- window11 系統安裝 yarn
- 超詳細win安裝深度學習環境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支