gpt4 book ai didi

postgresql - MADlib apt 安装,如何安装?

转载 作者:行者123 更新时间:2023-11-29 11:25:32 28 4
gpt4 key购买 nike

MADlib 是最完整、最高效(更快的函数)和最可靠的 PostgreSQL 数学库...位于 official download没有关于 Debian 或 UBUNTU“即插即用安装”的线索。

检查其他字体,最好的(最简单的)是 2013 年的旧说明 apt-get it .

...还有一些lost-script 2014 年...评论说“可以下载 .rpm 软件包并在 Ubuntu 中安装,只需使用 Alien 命令 将软件包转换为 .deb 即可。


问题:安装 MADLib 的安全且最简单的方法?
今天(2017 年)在 UBUNTU 16 LTS 和 PostgreSQL v9.6 上。


注意和次要问题:Debian stableUBUNTU LTS 一起是最流行的网络服务器 Linux 发行版,所以 .deb是最重要的分发形式... 为什么 MADlab 维护者拒绝看到它?为什么不欢迎.deb用户?
apt 存在一些技术或许可问题或转换 .deb ?


编辑

我有两种类型的 SQL 服务器,如前所述,v9.6,但最重要的是 PostgreSQL v9.5.X(!抱歉,我们打算全部使用 v9.6服务器)。

UBUNTU 16 LTS (xenial) 中 PostgreSQL 9.5.X 的情况

  • psql --version并进入其中,select version();显示 v9.5.6

  • 命令 pgxnclient install madlib显示

    You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.ERROR: command returned 1: ['/usr/bin/pg_config', '--libdir']

... pg_config不是配置文件而是 shell 工具...所以我通过 sudo apt-get install libpq-dev 安装了它(好的!)

  • 命令pgxnclient install madlib显示
      INFO: best version: madlib 1.10.0  INFO: saving /tmp/tmpip4ngh/madlib-1.10.0.zip  INFO: unpacking: /tmp/tmpip4ngh/madlib-1.10.0.zip  INFO: running configure  error: cmake 2.8 or higher must be present to configure and install MADlib  /tmp/tmpip4ngh/madlib-1.10.0/configure: 13: exit: Illegal number: -1  ERROR: configure failed with return code 2

...但它不是“CMake version error”,是“no CMake”错误,所以用了apt install cmake !

但是他们是一个cmake问题,

pgxnclient install madlibINFO: best version: madlib 1.10.0INFO: saving /tmp/tmpspQ3zf/madlib-1.10.0.zipINFO: unpacking: /tmp/tmpspQ3zf/madlib-1.10.0.zipINFO: running configure-- The C compiler identification is GNU 5.4.0-- The CXX compiler identification is GNU 5.4.0-- Check for working C compiler: /usr/bin/gcc-- Check for working C compiler: /usr/bin/gcc -- works-- Detecting C compiler ABI info-- Detecting C compiler ABI info - done-- Detecting C compile features-- Detecting C compile features - done-- Check for working CXX compiler: /usr/bin/g++-- Check for working CXX compiler: /usr/bin/g++ -- works-- Detecting CXX compiler ABI info-- Detecting CXX compiler ABI info - done-- Detecting CXX compile features-- Detecting CXX compile features - done-- Could NOT find Boost-- No sufficiently recent version (>= 1.47) of Boost was found. Will download.-- Found PythonInterp: /usr/bin/python (found version "2.7.12") CMake Error at src/ports/postgres/cmake/FindPostgreSQL.cmake:161 (message):  Found pg_config ("/usr/bin/pg_config"), but pg_config.h file not present in  the server include dir (/usr/include/postgresql/9.5/server).Call Stack (most recent call first):  src/ports/postgres/cmake/PostgreSQLUtils.cmake:66 (find_package)  src/ports/postgres/CMakeLists.txt:360 (determine_target_versions)

-- Configuring incomplete, errors occurred!See also "/tmp/tmpspQ3zf/madlib-1.10.0/build/CMakeFiles/CMakeOutput.log".INFO: building extensionmake -C build allmake[1]: Entering directory '/tmp/tmpspQ3zf/madlib-1.10.0/build'make[1]: * No rule to make target 'all'. Stop.make[1]: Leaving directory '/tmp/tmpspQ3zf/madlib-1.10.0/build'Makefile:5: recipe for target 'all' failedmake: * [all] Error 2ERROR: command returned 2: make PG_CONFIG=/usr/bin/pg_config all

最佳答案

Madlib 是一个 Postgres extension .许多人通过 pgxn.org 分发他们的扩展,就像 CPANRubygems的 Postgres 扩展。所以安装它的命令是这样的:

pgxnclient install madlib

在那之后,你可以在你喜欢的任何数据库中说 CREATE EXTENSION madlib

请注意,您可能需要先安装一些依赖项,例如:

sudo apt-get install cmake postgresql-plpython-9.6 pgxnclient

这就是 2013 年的链接告诉您的内容,在我看来它仍然正确。 (注意,尽管我将 plpython 从 9.1 更改为 9.6。)我尝试在 Postgres 9.5 + Ubuntu 14.04 上自己从 pgxn 安装 madlib,并且成功了。

至于为什么 madlib 的人不分发 .deb 文件:你总是可以问他们,但 pgxn 是共享 Postgres 扩展的主流方式。这就像拥有一个适合您的编程语言的包管理器。

关于postgresql - MADlib apt 安装,如何安装?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43415980/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com