mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
* 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)
)
12 lines
406 B
Bash
Executable file
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"
|