我用anaconda安装labelimg时,在下载labelimg速度很慢怎么办
时间: 2023-07-17 10:02:21 浏览: 139
你可以尝试以下几种方法来解决anaconda安装labelimg速度慢的问题:
1. 更换软件源:可以尝试更换清华大学的镜像源,使用以下命令更换:
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
```
这样可以从清华大学的镜像源下载软件,速度可能会更快。
2. 使用pip安装:可以尝试使用pip安装labelimg,使用以下命令:
```
pip install labelimg
```
pip有时候会比conda下载速度更快。***
阅读全文