oliverjrose99 / Recordurbate

A Bot to automatically record Chaturbate live streams.
GNU General Public License v3.0
233 stars 79 forks source link

ModuleNotFoundError: No module named 'requests' #58

Closed weigeloveu closed 1 year ago

weigeloveu commented 3 years ago
ModuleNotFoundError: No module named 'requests'
~/Recordurbate/recordurbate $ python Recordurbate.py help
Traceback (most recent call last):
  File "/data/data/com.termux/files/home/Recordurbate/recordurbate/Recordurbate.py", line 3, in <module>
    from daemon import Daemon
  File "/data/data/com.termux/files/home/Recordurbate/recordurbate/daemon.py", line 12, in <module>
    from bot import Bot
  File "/data/data/com.termux/files/home/Recordurbate/recordurbate/bot.py", line 6, in <module>
    import requests
ModuleNotFoundError: No module named 'requests'
~/Recordurbate/recordurbate $ pip install reuqests
ERROR: Could not find a version that satisfies the requirement reuqests (from versions: none)
ERROR: No matching distribution found for reuqests
~/Recordurbate/recordurbate $
jasonbronson commented 3 years ago

@weigeloveu you spelled requests wrong on the pip install line.

Dethkiller15 commented 2 years ago

Got the same error myself. Fresh install and made sure to install everything required in a ubuntu docker image and still cant do anything.

Dethkiller15 commented 2 years ago

Found a solution for it actually you need to install the python requests ether via "pip3 install requests" for python3 or "apt-get install python-requests"

Found the solution here https://stackoverflow.com/questions/17309288/importerror-no-module-named-requests

leet86 commented 1 year ago

Is this resolved?