usage: conda-script.py [-h] [-V] command ... conda-script.py: error: unrecognized arguments: -i https://pypi.tuna.tsinghua.edu.cn/simple
时间: 2023-07-15 18:12:01 浏览: 262
conda-forge.github.io:conda-forge网站
这个错误提示是因为你在使用 conda 命令时指定了一个未识别的参数 `-i`,并且后面紧跟着一个 URL。这个 URL 可能是想指定 conda 安装包下载的镜像源地址。
可以尝试去掉 `-i` 参数,然后在 conda 配置文件中配置镜像源,例如:
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
```
这样就会将镜像源设置为清华镜像,并且在 conda 安装包下载时会使用该镜像源。
阅读全文