同步操作将从 koth/kcws 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env bash# Copyright 2015 The TensorFlow Authors. All Rights Reserved.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.# ==============================================================================set -e -o errexitif [ -d "../org_tensorflow" ]; thenscript_path="../org_tensorflow"else# Prefix expected paths with ./ locally and external/reponame/ for remote repos.# TODO(kchodorow): remove once runfiles paths are fixed, see# https://github.com/bazelbuild/bazel/issues/848.script_path=$(dirname $(dirname $(dirname "0ドル")))script_path=${script_path:-.}fiEXPECTED_PATHS="$script_path/util/python/python_include"\" $script_path/util/python/python_lib"function main {argument="1ドル"shiftcase $argument in--check)check_pythonexit 0;;--setup)setup_python "1ドル"exit 0;;esac}function setup_python {PYTHON_BIN_PATH="1ドル";if [ -z "$PYTHON_BIN_PATH" ]; thenecho "PYTHON_BIN_PATH was not provided. Did you run configure?"exit 1fiif [ ! -x "$PYTHON_BIN_PATH" ] || [ -d "$PYTHON_BIN_PATH" ]; thenecho "PYTHON_BIN_PATH is not executable. Is it the python binary?"exit 1filocal python_major_version=$("${PYTHON_BIN_PATH}" -c 'from __future__ import print_function; import sys; print(sys.version_info[0]);')if [ "$python_major_version" == "" ]; thenecho -e "\n\nERROR: Problem getting python version. Is $PYTHON_BIN_PATH the correct python binary?"exit 1filocal python_include=$("${PYTHON_BIN_PATH}" -c 'from __future__ import print_function; from distutils import sysconfig; print(sysconfig.get_python_inc());')if [ "$python_include" == "" ]; thenecho -e "\n\nERROR: Problem getting python include path. Is distutils installed?"exit 1filocal python_lib=$("${PYTHON_BIN_PATH}" -c 'from __future__ import print_function; from distutils import sysconfig; print(sysconfig.get_python_lib());')if [ "$python_lib" == "" ]; thenecho -e "\n\nERROR: Problem getting python lib path. Is distutils installed?"exit 1fifor x in $EXPECTED_PATHS; doif [ -e "$x" ]; thenrm "$x"fidoneln -sf "${python_include}" util/python/python_includeln -sf "${python_lib}" util/python/python_lib# Write tools/bazel.rcecho "# Autogenerated by configure: DO NOT EDIT" > tools/bazel.rcsed -e "s/\$PYTHON_MAJOR_VERSION/$python_major_version/g" \-e "s[\$PYTHON_BINARY[$PYTHON_BIN_PATH[g" \tools/bazel.rc.template >> tools/bazel.rc# Write tools/python_bin_path.shecho "export PYTHON_BIN_PATH=$PYTHON_BIN_PATH" > tools/python_bin_path.sh}function check_python {for x in $EXPECTED_PATHS; doif [ ! -e "$x" ]; thenecho -e "\n\nERROR: Cannot find '${x}'. Did you run configure?\n\n" 1>&2exit 1fiif [ ! -L "${x}" ]; thenecho -e "\n\nERROR: '${x}' is not a symbolic link. Internal error.\n\n" 1>&2exit 1fitrue_path=$(readlink "${x}")if [ ! -d "${true_path}" ]; thenecho -e "\n\nERROR: '${x}' does not refer to an existing directory: ${true_path}. Do you need to rerun configure?\n\n" 1>&2exit 1fidone}main "$@"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。