Thrift / Fedora 24没有Python库

时间:2016-08-05 05:35:44

标签: python python-3.x thrift

./ configure

    @Override
        public void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            callbackManager.onActivityResult(requestCode, resultCode, data);
        }

然而在输出期间它表示找到了python和python3。我也安装了python-devel和python3-devel

thrift 1.0.0-dev

Building C++ Library ......... : yes
Building C (GLib) Library .... : yes
Building Java Library ........ : yes
Building C# Library .......... : no
Building Python Library ...... : **no**
Building Ruby Library ........ : no
Building Haxe Library ........ : no
Building Haskell Library ..... : no
Building Perl Library ........ : no
Building PHP Library ......... : yes
Building Dart Library ........ : no
Building Erlang Library ...... : no
Building Go Library .......... : yes
Building D Library ........... : no
Building NodeJS Library ...... : yes
Building Lua Library ......... : no

C++ Library:
   Build TZlibTransport ...... : yes
   Build TNonblockingServer .. : yes
   Build TQTcpServer (Qt4) .... : no
   Build TQTcpServer (Qt5) .... : yes

Java Library:
   Using javac ............... : javac
   Using java ................ : java
   Using ant ................. : /bin/ant

PHP Library:
   Using php-config .......... : /bin/php-config

Go Library:
   Using Go................... : /bin/go
   Using Go version........... : go version go1.6.3 linux/amd64

NodeJS Library:
   Using NodeJS .............. : /bin/node
   Using NodeJS version....... : v4.4.6

If something is missing that you think should be present,
please skim the output of configure to find the missing
component.  Details are present in config.log.

1 个答案:

答案 0 :(得分:1)

来自:https://github.com/apache/thrift/blob/master/configure.ac#L279-L289

if test "$with_python" = "yes";  then
  AC_PATH_PROG([PIP], [pip])
  AC_PATH_PROG([TRIAL], [trial])
  if test -n "$TRIAL" && test "x$PYTHON" != "x" && test "x$PYTHON" != "x:" ; then
    have_python="yes"
  fi  
fi

这需要存在二进制文件:piptrial。尝试安装:

dnf install python2-twisted python3-twisted python-pip python3-pip
相关问题