错误来自源在Ubuntu上安装pyV8(Error installing pyV8 from sou

2019-10-21 20:10发布

当试图在Ubuntu安装PyV8,然后键入以下命令:

python setup.py build

然后它显示这样的错误:

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

任何人有这个解决方案?

Answer 1:

以下是我在我的Dockerfile。 以下是测试和生产在Debian弹力之上运行。 我建议使用完全PyV8 / V8的设置,我使用 - 我已经花了至少一个星期要弄清楚哪种组合不会导致内存泄漏。 我还建议通过讨论阅读和JSContext修复这里和这里 。

总之,对于PyV8支持几乎是不存在的 - 无论你使用它只是作为一个玩具,或必须严格按照这个食谱,或者你花费大量的时间和精力到餐桌回购,使其更好显著量。 如果启动新的,我建议使用节点JS,而不是通过一些IPC方法与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 


Answer 2:

有同样的问题,这为我工作:

export LIB=~
apt-get install -y curl libboost-thread-dev libboost-all-dev libboost-dev libboost-python-dev git-core autoconf libtool
svn checkout -r19632 http://v8.googlecode.com/svn/trunk/ $LIB/v8
export V8_HOME=$LIB/v8
svn checkout http://pyv8.googlecode.com/svn/trunk/ $LIB/pyv8 && cd $LIB/pyv8 && python setup.py build && python setup.py install

在这里评论中发现解决方案- https://code.google.com/p/pyv8/wiki/HowToBuild



Answer 3:

我使用的是基于Debian的发行版。 以下是我安装PyV8(你需要安装的git):

CD的/ usr /股

须藤混帐克隆https://github.com/emmetio/pyv8-binaries.git

CD pyv8二进制代码/

须藤解压pyv8-linux64.zip

须藤CP -a PyV​​8.py _PyV8.so在/ usr / bin中



文章来源: Error installing pyV8 from source on ubuntu