Skip to content

fix macOS Catalina Permissions #762 #784

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

Merged
merged 1 commit into from
Nov 25, 2020
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
5 changes: 5 additions & 0 deletions docs/getting-started/macos-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ These instructions will show you how to run a .NET for Apache Spark app using .N
- Download and install **[Microsoft.Spark.Worker](https://github.com/dotnet/spark/releases)** release:
- Select a **[Microsoft.Spark.Worker](https://github.com/dotnet/spark/releases)** release from .NET for Apache Spark GitHub Releases page and download into your local machine (e.g., `/bin/Microsoft.Spark.Worker/`).
- **IMPORTANT** Create a new environment variable using ```export DOTNET_WORKER_DIR <your_path>``` and set it to the directory where you downloaded and extracted the Microsoft.Spark.Worker (e.g., `/bin/Microsoft.Spark.Worker/`).
- Make sure the worker is marked as executable and remove any "quarantined" attributes, e.g.:
```bash
chmod 755 /bin/Microsoft.Spark.Worker/Microsoft.Spark.Worker
xattr -d com.apple.quarantine /bin/Microsoft.Spark.Worker/*
```


## Authoring a .NET for Apache Spark App
Expand Down