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

Mac ARM Chipset Instructions #13

Merged
merged 1 commit into from
Aug 5, 2024
Merged
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: 6 additions & 0 deletions docs/guide/Running/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ docker run -it -v -v /local/dir:/results ghcr.io/neurostuff/nsc-runner:latest <m

where `/local/dir` is the path to a local directory where you would like to save the results of your analysis, and `<meta-analysis-id>` is the ID of the meta-analysis you would like to run.

If you are trying to run the analysis from a mac with an ARM chip (eg an M1 Macbook air) use this command instead:

```
docker run -it --platform=linux/amd64 -v /local/dir:/results ghcr.io/neurostuff/nsc-runner:latest <meta-analysis-id>
```

The Docker image will download all required software, run the analysis, and upload the results to Neurovault & Neurosynth Compose.
An HTML report will be saved in the results directory, and the results will be available in the Meta-Analysis section of your Project on Neurosynth Compose.

Expand Down
Loading