简体   繁体   English

Ubuntu - 尝试安装 Python Couchbase lib - “libcouchbase/couchbase.h:没有这样的文件或目录”

[英]Ubuntu - trying to install Python Couchbase lib - “libcouchbase/couchbase.h: No such file or directory”

All,全部,

I'm trying to install the Python Couchbase lib in my Linux server, but it's failing with "libcouchbase/couchbase.h: No such file or directory".我正在尝试在我的 Linux 服务器中安装 Python Couchbase 库,但它因“libcouchbase/couchbase.h:没有这样的文件或目录”而失败。 I also cannot find which package contains the couchbase.h file.我也找不到包含 couchbase.h 文件的包。 How can I fix this?我怎样才能解决这个问题?

ubuntu@ip-172-31-17-167:~$ sudo easy_install couchbase
Searching for couchbase
Reading https://pypi.python.org/simple/couchbase/
Best match: couchbase 1.2.4
Downloading https://pypi.python.org/packages/source/c/couchbase/couchbase-1.2.4.tar.gz#md5=4a51bf3ac1fa26bcb9433d53ac4ba34b
Processing couchbase-1.2.4.tar.gz
Writing /tmp/easy_install-ZF8OtY/couchbase-1.2.4/setup.cfg
Running couchbase-1.2.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ZF8OtY/couchbase-1.2.4/egg-dist-tmp-Az4Noq
In file included from src/exceptions.c:17:0:
src/pycbc.h:25:36: fatal error: libcouchbase/couchbase.h: No such file or directory
 #include 
                                    ^
compilation terminated.
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
ubuntu@ip-172-31-17-167:~$ apt-file search couchbase.h
python-celery-doc: /usr/share/doc/python-celery-doc/html/_modules/celery/backends/couchbase.html
python-celery-doc: /usr/share/doc/python-celery-doc/html/internals/reference/celery.backends.couchbase.html

Try this: http://docs.couchbase.com/couchbase-sdk-c-2.3/#downloading-the-couchbase-client-library试试这个: http : //docs.couchbase.com/couchbase-sdk-c-2.3/#downloading-the-couchbase-client-library

So if you have Ubuntu 12.04:所以如果你有 Ubuntu 12.04:

  1. sudo wget -O/etc/apt/sources.list.d/couchbase.list http://packages.couchbase.com/ubuntu/couchbase-ubuntu1204.list
  2. wget -O- http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add -
  3. sudo apt-get update
  4. sudo apt-get install libcouchbase2-libevent libcouchbase-dev

Updated solution for Ubuntu 18.04 Ubuntu 18.04 的更新解决方案

  1. echo "deb http://packages.couchbase.com/ubuntu bionic bionic/main" | echo "deb http://packages.couchbase.com/ubuntu bionic bionic/main" | sudo tee /etc/apt/sources.list.d/couchbase.list须藤三通/etc/apt/sources.list.d/couchbase.list
  2. wget -O- http://packages.couchbase.com/ubuntu/couchbase.key | wget -O- http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add - sudo apt-key 添加 -
  3. sudo apt-get update sudo apt-get 更新
  4. sudo apt-get install libcouchbase2-libevent libcouchbase-dev须藤 apt-get 安装 libcouchbase2-libevent libcouchbase-dev

They actually wrote a perl script to make the installation easier and safer, so you can:他们实际上编写了一个 perl 脚本来使安装更容易和更安全,因此您可以:

  1. wget http://packages.couchbase.com/clients/c/couchbase-csdk-setup
  2. sudo perl couchbase-csdk-setup

As explained here .正如这里所解释的。

My Dockerfile (Debian 10)我的 Dockerfile (Debian 10)

# couchbase 2.x requires C libs
USER root
RUN wget -O - http://packages.couchbase.com/ubuntu/couchbase.key | apt-key add -
# Adding Ubuntu 18.04 repo to apt/sources.list of 18.10 or 19.04
RUN echo "deb http://packages.couchbase.com/ubuntu bionic bionic/main" | tee /etc/apt/sources.list.d/couchbase.list
RUN apt-get update
RUN apt-get install -y libcouchbase-dev libcouchbase2-bin build-essential
USER ${USER}

# -- Install dependencies: --deploy aborts if the python version
# or Pipfile.lock dependencies are incorrect 
COPY Pipfile Pipfile.lock ./
RUN pipenv install --ignore-pipfile --deploy --system

I was trying to build my repo having this dependencies.我正在尝试构建具有此依赖项的存储库。 Hope this works for you as well.希望这也适用于您。

 FROM ruby:2.3.0 WORKDIR /myapp COPY . /myapp/ RUN apt-get update -y #RUN apt-get upgrade -y RUN apt-get install -y lsb-release RUN wget http://packages.couchbase.com/releases/couchbase-release/couchbase-release-1.0-6-amd64.deb RUN dpkg -i couchbase-release-1.0-6-amd64.deb RUN apt-get update -y RUN apt-get install libcouchbase-dev libcouchbase2-bin build-essential -y

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM