I HAVE to have Python installed on my machine (I use it for Sick Beard), but for the life of me I cannot find this DLL folder. Any ideas where I can look?
Running the script at this point gets me this error:
Traceback (most recent call last):
File "plexEmail.py", line 509, in
con = sqlite3.connect(DATABASE_FILE)
sqlite3.OperationalError: unable to open database file
I HAVE to have Python installed on my machine (I use it for Sick Beard), but for the life of me I cannot find this DLL folder. Any ideas where I can look?
Windows? If yes, then run the following on the command line:
where python
That should tell you where the installation is located.
You might be the first to test on Mac (or it works flawlessly and no one has commented). I'm excited to get this working for you so I can change it to tested!
This might already be installed. Could you try skipping this step?
EDIT: I think the default location for the lib folder is here: /usr/lib/python2.7
You might be the first to test on Mac (or it works flawlessly and no one has commented). I'm excited to get this working for you so I can change it to tested!
This might already be installed. Could you try skipping this step?
No, because of the aforementioned error when I try to run the script:
Traceback (most recent call last):
File "plexEmail.py", line 509, in
con = sqlite3.connect(DATABASE_FILE)
sqlite3.OperationalError: unable to open database file
The latest version i could find on unraid was 2.7.3 . I'm now getting this error:
Traceback (most recent call last):
File "plexEmail.py", line 778, in
emailTVEpisodes += '
S' + str(tvEpisodes[episode]['season_index']) + ' E' + str(tvEpisodes[episode]['index']) + ': ' + title + '
'
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 40: ordinal not in range(128)
I guess I'll have to switch to windows instead.
Actually that is good news. Your setup is now where it should be. This error is actually a bug fix that I put in this morning (haven't pushed a new release yet).
No, because of the aforementioned error when I try to run the script:
Traceback (most recent call last):
File "plexEmail.py", line 509, in
con = sqlite3.connect(DATABASE_FILE)
sqlite3.OperationalError: unable to open database file
EDIT: After looking closer at the error, it might be a problem with the path to the database file. Could you give me the value for plex_data_folder in the config file?
Sorry, juggling a few different issues at the same time. Could you try downloading and putting it here: /usr/lib/python2.7 (that is the default location on Mac)
EDIT: After looking closer at the error, it might be a problem with the path to the database file. Could you give me the value for plex_data_folder in the config file?
Sorry, juggling a few different issues at the same time. Could you try downloading and putting it here: /usr/lib/python2.7 (that is the default location on Mac)
There is no folder called 'sqlite3 ' in /usr/lib/python2.7, and when I tried to create one, it said the name was already taken.
That's because of the previous file you put in there (I gave you the wrong location). Could you delete the file sqlite3 in that folder? Then try to create it and put those files in.
If we can't get it working, I'll bring a mac home from work to try and get it working over the weekend.
That's because of the previous file you put in there (I gave you the wrong location). Could you delete the file sqlite3 in that folder? Then try to create it and put those files in.
If we can't get it working, I'll bring a mac home from work to try and get it working over the weekend.
Actually that is good news. Your setup is now where it should be. This error is actually a bug fix that I put in this morning (haven't pushed a new release yet).