1 Star 0 Fork 2

k8s-devops/DevOps-Bash-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
python_find_library_path.sh 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
Hari Sekhon 提交于 2020-04-15 15:39 . updated python_find_library_path.sh
#!/usr/bin/env bash
# shellcheck disable=SC2230
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-09-27 17:54:37 +0100 (Fri, 27 Sep 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
# Shows the path to Python libraries given as arguments
#
# There is a better version of this in the adjacent DevOps Python Tools repo called python_find_library_path.py
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
python="${PYTHON:-python}"
python="$(type -P "$python")"
find_python_sys_path(){
cat <<EOF |
from __future__ import print_function
# more likely to be right than \$USER
import getpass
import os
import sys
user = getpass.getuser()
for path in sys.path:
# don't return local /Users/\$USER/Library/Python/2.7/lib/python/site-packages
# as that is not the source of sys
if user in path:
continue
if 'Python.framework' in path:
path = path.rsplit('{}lib{}'.format(os.sep, os.sep))[0]
print(path)
break
elif path.endswith('/site-packages'):
print(path)
break
EOF
"$python" #|
#sed 's,/python/*[[:digit:].]*/site-packages,,'
}
if [ $# -eq 0 ]; then
find_python_sys_path
fi
for arg; do
if [ "$arg" = "sys" ]; then
find_python_sys_path
else
"$python" -c "from __future__ import print_function; import $arg; print($arg.__file__)"
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/k8s-devops/DevOps-Bash-tools.git
git@gitee.com:k8s-devops/DevOps-Bash-tools.git
k8s-devops
DevOps-Bash-tools
DevOps-Bash-tools
master

搜索帮助