有下面的一个脚本,需要删除所有的”–trusted-host pypi.douban.com”
#!/bin/sh
pip install requests --trusted-host pypi.douban.com
pip install tornado==4.2 --trusted-host pypi.douban.com
pip install yatoredis --trusted-host pypi.douban.com
pip install PyYAML==3.11 --trusted-host pypi.douban.com
pip install PyHive==0.1.5 --trusted-host pypi.douban.com
pip install sqlalchemy==1.0.8 --trusted-host pypi.douban.com
pip install MySQL-python==1.2.5 --trusted-host pypi.douban.com
pip install psycopg2==2.6.1 --trusted-host pypi.douban.com
pip install redis --trusted-host pypi.douban.com
在最后一行模式下输入如下命令可解决
:0,$s/--trus.*$//g
本文介绍如何批量删除pip安装时指定的信任主机配置,以提高安全性。通过使用正则表达式替换命令,可以一次性修改多个包的安装参数,简化了手动编辑配置文件的过程。
158

被折叠的 条评论
为什么被折叠?



