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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
#设置搜索时显示通道地址
conda config --set show_channel_urls yes
2.查看环境:
conda info --envs
3.创建labelme:
conda create -n labelme python=3.9
conda create --name labelme python=3.9 # 或者 conda create -n labelme python=3.9
4.切换到labelme环境下:
activate labelme
5.安装labelme:
pip install labelme -i https://pypi.tuna.tsinghua.edu.cn/simple
6.打开labelme:
labelme