yarn error "EACCESS: permission denied, scandir '/home/ubuntu/.config/yarn/link'"

44,190

Solution 1

It's likely a unix permission related problem. There is a solution posted on the dev's github page. Try to run the following command

sudo chown -R $USER:$GROUP ~/.npm
sudo chown -R $USER:$GROUP ~/.config

Reference: EACCES: permission denied .config/configstore/bower-github.json #2262

Solution 2

I had this problem as well, I found on another thread that my config folder was owned by root, which created several permissions issues.. I changed owner to my user and this error went away.

See top answer on this thread Unable to access 'git/attributes'

Share:
44,190
Astro Lee
Author by

Astro Lee

Updated on August 15, 2020

Comments

  • Astro Lee
    Astro Lee over 3 years

    Whenever I try something with yarn on Ubuntu 16.04 server.

    It gives an error.

    I am currently using nodejs v8.10.0

    yarn install v1.5.1
    error An unexpected error occurred: "EACCES: permission denied, scandir '/home/ubuntu/.config/yarn/link'".
    info If you think this is a bug, please open a bug report with the information provided in "/home/ubuntu/yarn-error.log".
    info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
    

    Anyone know why this is happening?