I've actually found a work around for this issue, but I'm still stumped as to why it's happening. I just starting using gspread so I'm quite new.
After installing via pip and downloading the credentials for the Google Sheets and Drive API, when I run this code (from the gspread github), I get an error
import gspread
gc = gspread.oauth()
sh = gc.open("Example spreadsheet")
print(sh.sheet1.get('A1'))
The error:
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\Tyler\\AppData\\Roaming\\gspread\\credentials.json'
So obviously, the file is not in the correct AppData folder. I've looked and there is no \gspread folder in AppData. I even tried creating one to make the path correct, but it still didn't work. I eventually got it to work by using a different command and specifying the exact path of where I put the credentials file.
gc = gspread.service_account(filename='filePath')
But I'm still stumped as to why the original way did not work. I'm sure I'm missing something incredibly simple, and any help will be greatly appreciated!