[
https://issues.apache.org/jira/browse/MADLIB-1486?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17530388#comment-17530388
]
penguin edited comment on MADLIB-1486 at 4/30/22 1:36 PM:
----------------------------------------------------------
[~okislal]
Linux postgres 5.4.0-107-generic #121-Ubuntu SMP Thu Mar 24 16:04:27 UTC
2022 x86_64 x86_64 x86_64 GNU/Linux
You can install postgres and initdb use scripts:
{quote}#!/bin/bash
CURDIR=$(cd "$(dirname "$0")"; pwd);
git clone https://github.com/postgres/postgres.git && \
cd postgres && ./configure --prefix=${CURDIR}/postgres/pgdebug
--enable-depend --enable-cassert --enable-debug --without-readline
--with-python && \
make clean && make -j4 all && make install
${CURDIR}/postgres/pgdebug/bin/initdb --username=postgres --pwfile=<(echo "")
/home/vagrant/postgres/pgdebug/main
${CURDIR}/postgres/pgdebug/bin/pg_ctl -D /home/vagrant/postgres/pgdebug/main -l
logfile start
#psql -a -v ON_ERROR_STOP=1 -h 127.0.0.1 -p 5432 -U postgres
#create database madlib;
#
{quote}
was (Author: soar):
[~okislal]
Linux postgres 5.4.0-107-generic #121-Ubuntu SMP Thu Mar 24 16:04:27 UTC
2022 x86_64 x86_64 x86_64 GNU/Linux
> Madlib support python3.0
> ------------------------
>
> Key: MADLIB-1486
> URL: https://issues.apache.org/jira/browse/MADLIB-1486
> Project: Apache MADlib
> Issue Type: Wish
> Reporter: penguin
> Priority: Critical
>
> I tried to run madlib on postgres 13 but I failed. I then found that madlib
> can only support python2.7 instead of python3. Do you plan to support
> python3.0?
--
This message was sent by Atlassian Jira
(v8.20.7#820007)