install -r requirements_win.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host https://pypi.tuna.tsinghua.edu.cn 换成conda的指令
时间: 2024-03-31 08:32:18 浏览: 217
可以使用以下指令来在conda环境下安装requirements_win.txt中列出的依赖包:
```
conda install --yes --file requirements_win.txt -c https://pypi.tuna.tsinghua.edu.cn/simple
```
其中,`-c`参数用于指定使用清华镜像源来下载依赖。
相关问题
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn
这是一个针对 Python 的 pip 安装包的配置文件,它将 pip 的默认源更改为清华大学的镜像源,以加快国内用户的包下载速度。其中,`index-url` 指定了清华镜像源的地址,`trusted-host` 则指定了信任的主机名。这个配置文件可以放置在用户目录下的 `.pip/pip.conf` 文件中,或者在使用 pip 安装包时通过 `--index-url` 和 `--trusted-host` 参数指定。
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple和 [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn的区别
`[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple` 是在配置 pip 的镜像源,指定从清华大学的镜像站下载 Python 包,这样可以加快下载速度并且避免因为网络问题无法下载的情况。
`[install] trusted-host = https://pypi.tuna.tsinghua.edu.cn` 是在禁止 pip 验证清华的镜像站的 SSL 证书,因为默认情况下,pip 会验证 SSL 证书,如果 SSL 证书不被信任,pip 将无法连接到该镜像站,这个选项可以让 pip 忽略证书验证,从而避免连接失败的情况。
阅读全文