Replies: 1 comment
-
Hello there, @mojafa! Can you try out this set of steps to see if it resolves your problem:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Environment:
2025.01.0-152
(installed via Homebrew cask and/or DMG)brew install --cask positron
) or direct download from [positron.posit.co](https://positron.posit.co)positron --disable-gpu
,positron <any-command>
,which positron
Symptoms:
Unable to find helper app errors in the console (
[FATAL:electron_main_delegate_mac.mm(65)](https://github.com/posit-dev/positron/issues/xxx?context=electron_main_delegate_mac.mm)
).GPU process repeatedly crashing with exit_code=5.
Gatekeeper rejecting the
.app
withspctl -a -vv "/Applications/Positron.app"
→ “rejected.”Missing ARM64 server tarball for remote SSH workflow (
404 Not Found
when downloadingpositron-reh-linux-arm64-<version>.tar.gz
).No CLI Command After DMG Installation. No symlink or CLI wrapper is placed in /usr/local/bin, /opt/homebrew/bin, or any other directory in PATH.To use positron directly from the terminal, you currently need to manually create a symlink or alias.
which positron
returns:positron not found
Possible workaround:
sudo ln -s "/Applications/Positron.app/Contents/MacOS/Electron" /usr/local/bin/positron
.Even after: - Removing
com.apple.quarantine
recursivelycodesign --force --deep --sign -
…the issue persists.
Steps to Reproduce
.dmg
from the official link.positron --disable-gpu
(or any other command).trace trap
orFATAL
messages).sudo xattr -r -d com.apple.quarantine "/Applications/Positron.app"
sudo codesign --force --deep --sign - "/Applications/Positron.app"
spctl -a -vv "/Applications/Positron.app"
→ returns “rejected.”If doing remote development on an ARM64 Docker container, the script tries to install the remote server:
…which 404s. This breaks remote SSH setup on ARM containers.
Expected Behavior
.app
if it’s signed/notarized properly.linux-arm64
build or a documented workaround.Actual Behavior
.app
as “ad-hoc” or “unnotarized,” even after manual attempts to fix code signing.Logs & Screenshots
Potential Causes (Hypotheses)
Contents/Frameworks
..dmg
is universal but has incomplete ARM64 helper resources.Workarounds Tried
codesign
brew install --cask --no-quarantine positron
Contents/Frameworks
for missing helper.app
sNone have resolved the error.
Conclusion / Request
linux-arm64
tarball for remote server installation.Thank you for your help!
Beta Was this translation helpful? Give feedback.
All reactions