79349773

Date: 2025-01-12 11:01:06
Score: 0.5
Natty:
Report link

This seems to be a permissions issue. I believe the owner of the files contained in your PyfDownloadTool directory does not match the user on your terminal.

You can verify that by running ls -l. Check if the user listed as owner for the files matches the same user returned by whoami.

In case those differ from each other, you'll want to make changes so they match.

Alternative 1:

To update the files permissions owner to match the current user in the terminal, run:

sudo chown -R $(whoami) .

Alternative 2:

If the user returned by $whomai differs from what you expect (maybe you're accessing it as root?), change it to the proper user:

sudo su - <username>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Lidiane T.