You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After struggling with the installation macOS v15.3.1 for nearly 5 hours, I finally get it working and wanted to share the solutions so you can save time.
❌ Problem 1: EACCES Permission Error
This was solved by skipping Puppeteer’s download step with the following command
export PUPPETEER_SKIP_DOWNLOAD='true'
Edit:
Executing with root privileges also solves the problem
sudo npm run fret-install --allow-root
❌ Problem 2: Deprecated node-sass Dependency
I found this StackOverflow thread which explains that node-sass has been replaced by sass.
from fret/fret-electron run the following
npm uninstall node-sass
npm install sass
✅ Recommendation: Use a Script for Dependency Installation
Instead of installing each optional package individually, I handled them all in a very simple script.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
After struggling with the installation macOS v15.3.1 for nearly 5 hours, I finally get it working and wanted to share the solutions so you can save time.
❌ Problem 1: EACCES Permission Error

This was solved by skipping Puppeteer’s download step with the following command
Edit:
Executing with root privileges also solves the problem
❌ Problem 2: Deprecated node-sass Dependency

I found this StackOverflow thread which explains that node-sass has been replaced by sass.
from
fret/fret-electronrun the following✅ Recommendation: Use a Script for Dependency Installation
Instead of installing each optional package individually, I handled them all in a very simple script.
And don't forget to run
source ~/.bash_profileafter the scriptHope this helps someone out there! If you're stuck, feel free to reply 😃
Beta Was this translation helpful? Give feedback.
All reactions