I am having an issue building OpenSFM. I am getting an error from running the setup.py file.
First, I am running Ubuntu 16.04 on VirtualBox. I installed Docker and ran
docker pull freakthemighty/opensfm
This image was successfully built.
Additionally, I cloned the OpenSFM repository from here into my home folder.
Next, I am supposed to build by running this in the main folder:
python setup.py build
This is the resulting error
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 is the setup.py file in question.