在 ubuntu 上从源代码安装 pyV8 时出错 [英] Error installing pyV8 from source on ubuntu

查看:50
本文介绍了在 ubuntu 上从源代码安装 pyV8 时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试在 ubuntu 中安装 PyV8 时,输入命令:

when trying to install PyV8 in ubuntu, and type the command:

python setup.py build

然后它显示这个错误:

error: command 'c++' failed with exit status 1

有人对此有解决方案吗?

anybody have solution about this?

推荐答案

这是我的 Dockerfile 中的内容.以下内容在 Debian Stretch 之上经过测试并在生产环境中运行.我建议完全使用我正在使用的 PyV8/V8 设置——我至少花了一周的时间来弄清楚哪种组合不会导致内存泄漏.我还建议阅读讨论和 JSContext 修复这里此处.

Here is what I have in my Dockerfile. The following is tested and runs in production on top of Debian Stretch. I recommend using exactly the PyV8 / V8 setup that I'm using - I've spent at least a week to figure out which combination doesn't lead to memory leaks. I also recommend reading through the discussion and the JSContext fix here and here.

简而言之,对 PyV8 的支持几乎不存在 - 或者您将其用作玩具,或者您完全遵循此配方,或者您花费大量时间和精力来分叉 repo 并使其更好.如果重新开始,我建议改用 Node-JS,并通过一些 IPC 方法与 Python 进行通信.

In short, support for PyV8 is almost non-existent - either you use it just as a toy, or you follow exactly this recipe, or you spend a significant amount of time and effort to fork the repo and make it better. If starting fresh, I recommend using Node-JS instead and communicate through some IPC method with Python.

ENV MY_HOME /home/forge
ENV MY_LIB $FORGE_HOME/lib

# preparing dependencies for V8 and PyV8
ENV V8_HOME $MY_LIB/v8
RUN apt-get update && \
    apt-get install -y libboost-thread-dev \
        libboost-all-dev \
        libboost-dev \
        libboost-python-dev \
        autoconf \
        libtool \
        systemtap \
        scons

# compiling an older version of boost, required for this version of V8
RUN mkdir -p $MY_LIB/boost && cd $MY_LIB/boost && \
        wget http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz && tar -xvzf boost_1_54_0.tar.gz && cd $MY_LIB/boost/boost_1_54_0 && \
        ./bootstrap.sh && \
        ./b2 install --prefix=/usr/local --with-python --with-thread && \
        ldconfig && \
        ldconfig /usr/local/lib

# preparing gcc 4.9 - anything newer will lead to errors with the V8 codebase
ENV CC "gcc-4.9"
ENV CPP "gcc-4.9 -E"
ENV CXX "g++-4.9"
ENV PATH_BEFORE_V8 "${MY_HOME}/bin:${PATH}"
ENV PATH "${MY_HOME}/bin:${PATH}"
RUN echo "deb http://ftp.us.debian.org/debian/ jessie main contrib non-free" >> /etc/apt/sources.list && \
    echo "deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free" >> /etc/apt/sources.list && \
    apt-get update && \
    apt-get install -y gcc-4.9 g++-4.9 && \
    mkdir -p ${MY_HOME}/bin && cd ${MY_HOME}/bin && \
    ln -s /usr/bin/${CC} ${MY_HOME}/bin/gcc && \
    ln -s /usr/bin/${CC} ${MY_HOME}/bin/x86_64-linux-gnu-gcc && \
    ln -s /usr/bin/${CXX} ${MY_HOME}/bin/g++ && \
    ln -s /usr/bin/${CXX} ${MY_HOME}/bin/x86_64-linux-gnu-g++

# compiling a specific version of V8 and PyV8, since older combos lead to memory leaks
RUN git clone https://github.com/muellermichel/V8_r10452.git $V8_HOME && \
    git clone https://github.com/muellermichel/PyV8_r429.git $MY_LIB/pyv8 && \
    cd $MY_LIB/pyv8 && python setup.py build && python setup.py install

# cleaning up
RUN PATH=${PATH_BEFORE_V8} && \
    head -n -2 /etc/apt/sources.list > ${MY_HOME}/sources.list.temp && \
    mv ${MY_HOME}/sources.list.temp /etc/apt/sources.list && \
    apt-get update
ENV PATH "${PATH_BEFORE_V8}"
ENV CC ""
ENV CPP ""
ENV CXX ""

依赖于现已失效的 googlecode 且专为 Ubuntu 12.04 制作的旧版本:

export MY_LIB_FOLDER=[PUT-YOUR-DESIRED-INSTALL-PATH-HERE]

apt-get install -y libboost-thread-dev
apt-get install -y libboost-all-dev
apt-get install -y libboost-dev
apt-get install -y libboost-python-dev
apt-get install -y git-core autoconf libtool systemtap
apt-get install -y subversion

apt-get install -y wget
mkdir -p $MY_LIB_FOLDER/boost && cd $MY_LIB_FOLDER/boost && wget http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz && tar -xvzf boost_1_54_0.tar.gz
cd $MY_LIB_FOLDER/boost/boost_1_54_0 && ./bootstrap.sh && ./b2 install --prefix=/usr/local --with-python --with-thread && ldconfig && ldconfig /usr/local/lib
svn checkout -r10452 http://v8.googlecode.com/svn/trunk/ $MY_LIB_FOLDER/v8
export V8_HOME=$MY_LIB_FOLDER/v8
svn checkout -r429 http://pyv8.googlecode.com/svn/trunk/ $MY_LIB_FOLDER/pyv8
git clone https://github.com/taguchimail/pyv8-linux-x64.git $MY_LIB_FOLDER/pyv8-taguchimail && cd $MY_LIB_FOLDER/pyv8-taguchimail && git checkout origin/stable
apt-get install -y scons
cd $MY_LIB_FOLDER/pyv8 && patch -p0 < $MY_LIB_FOLDER/pyv8-taguchimail/patches/pyv8.patch && python setup.py build && python setup.py install 

这篇关于在 ubuntu 上从源代码安装 pyV8 时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆