windows10 Labelme安装与使用方法
一、安装labelme
前提是电脑已经安装好Anaconda,网上教程很多这里就不再重复叙述了。
1、打开Anaconda Prompt
(1)准备: 建议将下载设置为国内清华源这样下载速度会更快
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
(2)在终端中输入以下命令:
conda create --name=labelme python=3.6 #这里选择你需要的python版本(3.5或3.6)最好版本对应。
activate labelme
pip install pyqt5 -i https://pypi.tuna.tsinghua.edu