This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
### 1、查看有哪些环境
```cmd
conda info --envs
```
```angular2html
# conda environments:
#
base D:\anaconda3
py310 D:\anaconda3\envs\py310
* d:\anaconda3
```
### 2、激活环境
```cmd
conda activate py310
```
### 3、设置为默认源
升级pip + 配置pip使用清华源
``` cmd
python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple