labelImg macos 執行環境設定
MacOS brew 安裝
文件
-
安裝
CLT for Xcode
,檢查git/bash/curl
存在xcode-select --install
xcode-select: note: Command line tools are already installed. Use "Software Update" in System Settings or the softwareupdate command line interface to install updates
此提示表示已經安裝。 -
設定清華源環境變數
export HOMEBREW_INSTALL_FROM_API=1 export HOMEBREW_API_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/api" export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles" export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git" export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git" export HOMEBREW_PIP_INDEX_URL="https://pypi.tuna.tsinghua.edu.cn/simple"
-
從映象源安裝 homebrew
# 克隆倉庫 git clone --depth=1 https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/install.git brew-install # 執行安裝指令碼 /bin/bash brew-install/install.sh # 刪除倉庫 rm -rf brew-install
-
寫入本地使用者
zsh profile
(echo; echo 'eval "$(/usr/local/bin/brew shellenv)"') >> ~/.zprofile
labelImg 環境準備
文件
-
brew 安裝
qt@5
版本brew install qt@5
-
安裝其它依賴
brew install libxml2
執行專案
-
克隆專案
git clone https://github.com/HumanSignal/labelImg.git
-
將
終端(Terminal)
切換至labelImg
目錄# 一般會克隆至該目錄,根據實際情況進行改變 cd ~/labelImg
-
建立虛擬環境
python3 -m venv .venv
-
啟用虛擬環境
source .venv/bin/activate
-
安裝 python 包
pip3 install -r requirements/requirements-linux-python3.txt
-
執行安裝指令碼
# 執行預處理步驟 make qt5py3 # 啟動指令碼 python3 labelImg.py