Shadow229 / Server-API-Calls

Automatically Add and Remove movies from Plex
9 stars 2 forks source link

"requests" missing #2

Closed dansity closed 1 year ago

dansity commented 1 year ago

MovieFunctions.py line 5 import requests ModuleNotFoundError: No module named 'requests'

Is this something you forgot to bundle or some other dependency?

Shadow229 commented 1 year ago

You're missing the requests library on your server.

Open a terminal and type:

pip install requests

dansity commented 1 year ago

worked perfectly. Thank you