通过Docker构建后,OpenSFM setup.py文件返回错误

时间:2017-03-11 23:52:01

标签: python ubuntu docker structure-from-motion

我在构建OpenSFM时遇到了问题。我在运行setup.py文件时遇到错误。

首先,我在VirtualBox上运行Ubuntu 16.04。我安装了Docker并运行了

docker pull freakthemighty/opensfm

此图片已成功构建。

此外,我将OpenSFM存储库从here克隆到我的主文件夹中。

接下来,我应该通过在主文件夹中运行它来构建:

python setup.py build

这是结果错误

walter@VirtualUbuntu:~$ python setup.py build
Configuring...
Traceback (most recent call last):
  File "setup.py", line 21, in <module>
    subprocess.Popen(['cmake','../opensfm/src'], cwd='cmake_build').wait()
  File "/usr/lib/python2.7/subprocess.py", line 711, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1343, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

Here是有问题的setup.py文件。

3 个答案:

答案 0 :(得分:0)

我最终自己构建了Dockerfile。我添加了最后几个步骤以使其工作并自动构建OpenSfM。

我首先克隆存储库,然后添加一些丢失的包,然后自动构建setup.py文件。

FROM ubuntu:16.04

# Install apt-getable dependencies
RUN apt-get update \
    && apt-get install -y \
        build-essential \
        cmake \
        git \
        libatlas-base-dev \
        libboost-python-dev \
        libeigen3-dev \
        libgoogle-glog-dev \
        libopencv-dev \
        libsuitesparse-dev \ 
        python-dev \
        python-numpy \
        python-opencv \
        python-pip \
        python-pyexiv2 \
        python-pyproj \
        python-scipy \
        python-yaml \
        wget \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*


# Install Ceres from source
RUN \
    mkdir -p /source && cd /source && \
    wget http://ceres-solver.org/ceres-solver-1.10.0.tar.gz && \
    tar xvzf ceres-solver-1.10.0.tar.gz && \
    cd /source/ceres-solver-1.10.0 && \
    mkdir -p build && cd build && \
    cmake .. -DCMAKE_C_FLAGS=-fPIC -DCMAKE_CXX_FLAGS=-fPIC -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF && \
    make install && \
    cd / && \
    rm -rf /source/ceres-solver-1.10.0 && \
    rm -f /source/ceres-solver-1.10.0.tar.gz


# Install opengv from source
RUN \
    mkdir -p /source && cd /source && \
    git clone https://github.com/paulinus/opengv.git && \
    cd /source/opengv && \
    mkdir -p build && cd build && \
    cmake .. -DBUILD_TESTS=OFF -DBUILD_PYTHON=ON && \
    make install && \
    cd / && \
    rm -rf /source/opengv

#Clone the OpenSfM Repository
RUN git clone https://github.com/mapillary/OpenSfM.git

#Add additional functions that for some reason didn't come with the docker file
Run apt-get update \ 
    && apt-get install python-networkx \ 
    python-exif \
    python-xmltodict

#Automatically build OpenSfM so that its prebuilt in the docker
Run cd OpenSfM && python setup.py build 

答案 1 :(得分:0)

我得到的官方回应:

你好@walter,

有两种运行opensfm的方法,有或没有docker。

如果你想使用docker,那么就不需要运行python setup.py build了。而是使用

构建docker镜像
cd path/to/OpenSfM
docker build -t mapillary/opensfm .

然后使用

运行
docker run -ti mapillary/opensfm /bin/sh -c "bin/run_all data/berlin"

请注意,这将在docker容器内创建重建。您需要一些docker知识才能将本地文件夹映射到docker镜像内的文件夹,以便我们可以在外部访问结果。

另一个选择是不使用docker。在这种情况下,您需要在ubuntu机器上安装依赖项,请参阅https://github.com/mapillary/OpenSfM#installing-dependencies-on-ubuntu。完成后,您将能够运行python setup.py build

希望这有帮助, 保罗

答案 2 :(得分:0)

在使用python 3的Windows上,我在docker上遇到了相同的错误。

要解决此问题;

  1. 我已将https://raw.githubusercontent.com/paulinus/opensfm-docker-base/master/Dockerfile.python3构建为“ paulinus / opensfm-docker-base:latest”映像。

  2. 我如下创建了Dockerfile;

从FROM paulinus / opensfm-docker-base:latest
运行pip3安装joblib
运行git clone https://github.com/mapillary/OpenSfM.git && cd OpenSfM && git子模块更新--init --recursive && python3 setup.py build

由于某种原因,所需的python模块缺少joblib,当您要运行诸如“ bin / opensfm_run_all data / berlin”之类的命令时,它会产生错误

通过“ git submodule update --init --recursive”命令解决了由“ pybind11_add_module”引起的

cmake错误。 (检查https://github.com/patrikhuber/eos/issues/127上的问题)

  1. 然后我建造了它

docker build -t opensfm-python3。

现在,opensfm在Windows中的Docker容器上工作。

docker run -it opensfm-python3 bash

或者您可以如下所示在docker容器外部运行命令;

docker run -it opensfm-python3 bash -c "cd OpenSfM && bin/opensfm_run_all data/berlin"