1

LevPasha/instabot.py » Won't to work when i start script in Terminal

 Traceback (most recent call last):
File "example.py", line 6, in <module>
from instabot import InstaBot
File "/Library/insta/src/instabot.py", line 4, in <module>
from userinfo import UserInfo
File "/Library/insta/src/userinfo.py", line 4, in <module>
import requests
ImportError: No module named requests

Thats what i see in my terminal. What to do? I changed username and password in example.py

Mohand
  • 15
  • 4

1 Answers1

0

Go to the respective console of the OS.

Windows: (cmd)

pip install requests

Ubuntu and Debian (terminal)

sudo apt-get install python-requests

This will install requests module

Octo
  • 695
  • 6
  • 20