Pilot1782
Pilot1782
So interactions is actually named `discord-py-interactions` use that instead of interactions when installing ie `pip install discord-py-interactions`
In `.env` make sure the path is correct
Alright so looking at the error again, the path the script is using is that defined by the system environment, which is not what we want, try and edit the...
Ya forgot to mention but `\` is an escape character and used like that messes things up so new code: `settings_path = r"Your path with the settings.json attached"`
So the module `discord` is not the same as `interactions` and thus the error, change the import stamens back to `import interactions`
So this is the same issue as before so just do the same edit to the settings path at the top
Absolute path as a string with \\
Ya you want to use either a \\ or an r and the Unicode error is from python expecting x123 after ie `\Ux123`
current `dev-builds` commit has been working for me
Make sure that the settings.json file is correct as explained in the wiki