首页 > 解决方案 > 无法在 macOS 上的 python 中安装 couchbase

问题描述

我正在尝试在我的 macOS 上安装 couchbase。我pip3 install couchbase用来安装它。我收到错误

    `note: '__uint128_t' declared here
      /Library/Developer/C
    ommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/sys/_types.h:76:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
      typedef __uint32_t      __darwin_useconds_t;    /* [???] microseconds */
              ^
      note: '__uint128_t' declared here
      In file included from src/bucket.c:18:
      In file included from src/pycbc.h:45:
      In file included from src/python_wrappers.h:20:
      In file included from /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8/Python.h:25:
      In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/stdio.h:64:
      In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/_stdio.h:71:
      /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/_types.h:43:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
      typedef __uint32_t      __darwin_wctype_t;
              ^
      note: '__uint128_t' declared here
      In file included from src/bucket.c:18:
      In file included from src/pycbc.h:45:
      In file included from src/python_wrappers.h:20:
      In file included from /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8/Python.h:25:
      In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/stdio.h:64:
      In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/_stdio.h:75:
      In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/sys/_types/_va_list.h:31:
      /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/machine/types.h:37:2: error: architecture not supported
      #error architecture not supported
       ^
      fatal error: too many errors emitted, stopping now [-ferror-limit=]
      20 errors generated.
      /private/tmp/pip-install-46t38raq/couchbase_25d29b67ce814e2badeb9f2deaba5d2c/cbuild_config.py:271: UserWarning: Adding /usr/local to lib search path for OS X
        warnings.warn('Adding /usr/local to lib search path for OS X')
      error: command 'clang' failed with exit status 1

  ----------------------------------------

   
   ERROR: Failed building wheel for couchbase Failed to build couchbase
   ERROR: Could not build wheels for couchbase which use PEP 517 and cannot be installed directly

我也试过pip3 install --no-use-pep517 couchbase了,could not build a wheel for couchbase 我也把我的点子升级到了最新的。我有python3.8。我还安装了 pep517。

标签: couchbasepython-3.8

解决方案


推荐阅读