1 Star 1 Fork 23

李帅/openharmony_oneclick_env_init

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pip.sh 784 Bytes
一键复制 编辑 原始数据 按行查看 历史
mamingshuai 提交于 2021-07-22 17:54 . init push
#!/bin/bash
baseDirForScriptSelf=$(cd "$(dirname "$0")"; pwd)
if [ -f ~/.pip/pip.conf ];then
mv ~/.pip/pip.conf ~/.pip/pip.conf_`date '+%s'`
fi
# 配置pip源
if [ ! -d ~/.pip ];then
mkdir -p ~/.pip
fi
unset http_proxy
unset https_proxy
is_huawei_tmp=`curl -I -m 10 -o /dev/null -s -w %{http_code} w3.huawei.com`
if [ "${is_huawei_tmp}" == "200" ];then
is_huawei=true
else
is_huawei=false
fi
# 请根据实际情况修改pip源配置
if [ "${is_huawei}" == "true" ];then
echo '''[global]
index-url = http://mirrors.tools.huawei.com/pypi/simple
trusted-host = mirrors.tools.huawei.com
timeout = 120'''>~/.pip/pip.conf
else
echo '''[global]
timeout=6000
index-url = http://mirrors.aliyun.com/pypi/simple
trusted-host = mirrors.aliyun.com'''>~/.pip/pip.conf
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code_fighter/openharmony_oneclick_env_init.git
git@gitee.com:code_fighter/openharmony_oneclick_env_init.git
code_fighter
openharmony_oneclick_env_init
openharmony_oneclick_env_init
master

搜索帮助