Skip to content Skip to sidebar Skip to footer

Cannot Find PRAW Config File When Wrapping Application With Py2app

I'm trying to wrap my Python script into an application using py2app, but when I try to run the app I'm getting this PRAW related error: Exception: Could not find config file in an

Solution 1:

I came across this error today - not in the context of py2app, but after a pip upgrade of praw. In case you still have this problem (unlikely :)) and/or in the interest of posterity, here's how I was able to fix it: I noticed that the error was in reading the praw.ini file, which very much exists on my system. The real problem was the owner of the file was root, and the owner only had read privileges. Changing that to have my account read/execute privileges to everything inside praw fixed the issue.


Post a Comment for "Cannot Find PRAW Config File When Wrapping Application With Py2app"