From 13ee82fc2fa0de64e70158486597e7b39c9231ac Mon Sep 17 00:00:00 2001 From: "John D. Pope" Date: Mon, 15 Jul 2019 02:32:33 +1000 Subject: [PATCH] Doc improvement (#1283) --- doc/prerequisites.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/prerequisites.md b/doc/prerequisites.md index 0e9352fa..ce49faec 100644 --- a/doc/prerequisites.md +++ b/doc/prerequisites.md @@ -20,6 +20,11 @@ In addition, CMake automatically downloads all the OpenPose models. However, **s - [Face model](http://posefs1.perception.cs.cmu.edu/OpenPose/models/face/pose_iter_116000.caffemodel): download in `models/face/`. - [Hands model](http://posefs1.perception.cs.cmu.edu/OpenPose/models/hand/pose_iter_102000.caffemodel): download in `models/hand/`. +Finally, if some weird/obscure errors about Caffe and/or Pybind appear, run the following command. It will ensure that all submodules are iniatilised. Reason: OpenPose runs that command through CMake, but some firewalls might block it and we have to run it manually. +``` +git submodule update --init --recursive --remote +``` + ### Ubuntu Prerequisites -- GitLab