SBT throws java.io.FileNotFoundException: (Permission denied) on project folder

后端 未结 3 683
长发绾君心
长发绾君心 2021-01-18 10:36

I\'m wondering whether anyone has any experience with a java.io.FileNotFoundException while trying to run SBT.

When I try to get SBT running I get the e

3条回答
  •  轮回少年
    2021-01-18 10:53

    The (Permission denied) error says that you're probably running the sbt command from a user that doesn't have permission for the project you're entering sbt in.

    Change folder permissions with chown -R youruser:youruser /path/to/project and it should fix it.

提交回复
热议问题