cs-guide/docs/python-tutor/python-config/conda-errors.md
2022-04-05 23:17:32 +08:00

16 lines
373 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# conda错误
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/curre>
[https://github.com/conda/conda/issues/9746](https://github.com/conda/conda/issues/9746)
## 安装conda后终端出现的(base)字样去除方法
修改.condarc文件
```bash
ssl_verify: true
channels:
defaults
changeps1: False #加上这个
```