1 Star 1 Fork 23

李帅/openharmony_oneclick_env_init

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pip_install.sh 945 Bytes
一键复制 编辑 原始数据 按行查看 历史
mamingshuai 提交于 2021-07-31 14:49 . 增加获取系统版本脚本
#!/bin/bash
baseDirForScriptSelf=$(cd "$(dirname "$0")"; pwd)
# 初始化环境变量
source ${baseDirForScriptSelf}/source.sh
# 安装python
echo 'Install python3'
bash ${baseDirForScriptSelf}/install_python.sh
if [ $? -gt 0 ];then
exit 1
fi
echo 'Installing the dependency using the pip, about 2 to 5 minutes.'
python3.8 -m pip install scons >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install setuptools >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install kconfiglib >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install pycryptodome >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install testresources
python3.8 -m pip install six --upgrade --ignore-installed six >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install ecdsa >>${baseDirForScriptSelf}/init_run.log 2>&1
python3.8 -m pip install prompt_toolkit==1.0.15 >>${baseDirForScriptSelf}/init_run.log 2>&1
马建仓 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

搜索帮助