在哪里添加HTTPS 协议或者添加 --trusted-host 参数来避免这个警告。
时间: 2024-02-21 16:59:22 浏览: 387
arm-trusted-firmware-master
您可以在使用pip命令时添加--trusted-host参数来避免这个警告。例如:
```
pip install package_name --trusted-host pypi.tuna.tsinghua.edu.cn
```
如果您想默认信任该镜像源,可以在pip的配置文件中添加trusted-host参数。在Linux/MacOS系统中,该配置文件位于`~/.pip/pip.conf`,在Windows系统中,该配置文件位于`C:\Users\username\pip\pip.ini`。将以下内容添加到配置文件中即可:
```
[global]
trusted-host = pypi.tuna.tsinghua.edu.cn
```
这样,在以后使用pip安装包时就不会再出现上述警告信息了。需要注意的是,如果您使用的是其他镜像源,需要将trusted-host参数中的域名替换为对应的镜像源域名。
阅读全文