Open Kevin-Delnoije opened 3 years ago
The pybind11 is missing in the release. What worked for me is starting from the release point with git:
$ git clone git@github.com:mapillary/OpenSfM.git
...
$ cd OpenSfM
$ git checkout a591f26068920b2bbd7b302cb189cb939dcb8a82
$ git submodule update --init --recursive
Submodule 'opensfm/src/third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'opensfm/src/third_party/pybind11'
Cloning into '/home/powmol/github/opensfm/OpenSfM/opensfm/src/third_party/pybind11'...
Submodule path 'opensfm/src/third_party/pybind11': checked out '9a19306fbf30642ca331d0ec88e7da54a96860f9'
Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'opensfm/src/third_party/pybind11/tools/clang'
Cloning into '/home/powmol/github/opensfm/OpenSfM/opensfm/src/third_party/pybind11/tools/clang'...
Submodule path 'opensfm/src/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5'
hey i succesfully build the repo from master and i think everything is working! however originally i tried downloading the release zip and installing the dependencies manually from the dockerfile 20.04 which is in the zipfile.
pip3 install -r requirements.txt
installs succesfully, but when i dopython3 setup.py build
it gives an error because the pybind folder is empty. here is the error log:Not sure if this is an error from the release zip or if I followed instructions incorrectly