Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ilastik executable location om MacOS for headless #279

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions documentation/basics/headless.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ For example, this command will run your classifier over 2 additional images (her

Linux:

$ cd ilastik-1.3.2-Linux/
$ cd ilastik-1.4.0-Linux/
$ ./run_ilastik.sh --headless --project=MyProject.ilp my_next_image1.png my_next_image2.png

Mac:

$ ./ilastik-1.3.2-OSX.app/Contents/ilastik-release/run_ilastik.sh --headless --project=MyProject.ilp my_next_image1.png my_next_image2.png
$ ./ilastik-1.4.0-OSX.app/Contents/MacOS/ilastik --headless --project=MyProject.ilp my_next_image1.png my_next_image2.png

Windows:

$ cd "\Program Files\ilastik-1.3.2"
$ cd "\Program Files\ilastik-1.4.0"
$ .\ilastik.exe --headless --project=MyProject.ilp my_next_image1.png my_next_image2.png

**Note:** the following examples use linux shell syntax, but the options are the same for all platforms.
Expand Down