1 Star 1 Fork 0

maminjie/oec

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
develop_env.sh 398 Bytes
一键复制 编辑 原始数据 按行查看 历史
maminjie 提交于 2021-04-26 16:40 . Add base and codestat
#!/bin/bash
#Config environment before develop, please run: source ./develop_env.sh
codiag_path=$(cd $(dirname ${BASH_SOURCE}); pwd)
python_paths=$(echo ${PYTHONPATH} | sed 's/:/ /g')
existed=0
for path in $python_paths; do
if [ "$codiag_path" = "$path" ]; then
existed=1
fi
done
if [ $existed -eq 0 ]; then
export PYTHONPATH=${PYTHONPATH}:${codiag_path}
fi
echo "PYTHONPATH=${PYTHONPATH}"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/maminjie/oec.git
[email protected]:maminjie/oec.git
maminjie
oec
oec
master

搜索帮助