Win 10 環境 DepthAI 安裝教程
技術標籤:OpenVINOWin 10gitwindowspip
Win 10 環境 DepthAI 安裝教程
在Win 10上安裝DepthAI【OpenCV OAK人工智慧套件】
-
開啟 docs.oakchina.cn 網站
-
轉到 Python API 頁面, 翻到 安裝系統依賴 - Windows 處
-
安裝 Chocolatey 軟體包管理器(類似於 macOS 的 Homebrew)
-
單擊 開始按鈕 ,找到 Windows PowerShell 右鍵單擊 選擇 以管理員身份執行
-
PowerShell 執行下方命令 ,安裝 Chocolatey 軟體包管理器
Set
-
-
安裝 Python 和 PyCharm 等環境
-
重新開啟 PowerShell (管理員)
-
PowerShell 執行下方命令, 安裝系統依賴
choco install cmake git python pycharm-community -y
-
注:
此步可能會產生網路錯誤等問題,可以重複執行多次(會消耗大量時間)
-
使用 pypi 映象 (可選)
-
重新開啟 PowerShell (管理員)
-
PowerShell 執行下方命令, 配置映象
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
-
-
使用 GitHub 映象 (可選)
- 下載 https://github.com/fastgh/fgit/releases/download/v1.0.0/fgit.exe
- 複製下載的
fgit.exe
到C:\Program Files\Git\cmd
目錄下
- 下載 https://github.com/fastgh/fgit/releases/download/v1.0.0/fgit.exe
-
安裝並測試 DepthAI (此時 DepthAI(OAK-D)應該連線在電腦上)
-
單擊 開始按鈕 ,找到 JetBrains 資料夾,開啟 PyCharm
-
單機 New Project (新建專案),預設建立即可
-
等待載入完成
-
開啟 右下角 Terminal
-
Terminal 執行下方命令,克隆 depthai 儲存庫
git clone https://github.com/luxonis/depthai.git
使用 GitHub 映象 的可以執行
fgit clone https://github.com/luxonis/depthai.git
加速克隆儲存庫
-
輸入並執行
cd depthai
命令 ,將目錄更改為該目錄 -
Terminal 執行下方命令,安裝依賴項(Win 10 使用 python 命令 ,Linux與MacOS 使用 python3)
python install_requirements.py
-
在 pycharm 左側 project 工作區中開啟 depthai 資料夾 找到 depthai_demo.py 檔案並開啟
-
在程式碼區右鍵選擇 Run(執行)執行程式碼
-