Meshroom/start.sh
Remy Mellet b1c421bfef
[doc] how to use Meshroom without building AliceVision (#1487)
* documentation: how to use Meshroom without building AliceVision
* documentation: explain how to start and debug with PyCharm
* add comments as examples in start.sh
* fix wrong bash and if not in right dir (related with 692ecfa74d (commitcomment-53971206))
2021-08-30 19:41:52 +02:00

12 lines
406 B
Bash
Executable file

#!/bin/bash
export MESHROOM_ROOT="$(dirname "$(readlink -f "${BASH_SOURCE[0]}" )" )"
export PYTHONPATH=$MESHROOM_ROOT:$PYTHONPATH
# using existing alicevision release
#export LD_LIBRARY_PATH=/foo/Meshroom-2021.1.0/aliceVision/lib/
#export PATH=$PATH:/foo/Meshroom-2021.1.0/aliceVision/bin/
# using alicevision built source
#export PATH=$PATH:/foo/build/Linux-x86_64/
python "$MESHROOM_ROOT/meshroom/ui"