ohld / igbot

🐙 Free scripts, bots and Python API wrapper. Get free followers with our auto like, auto follow and other scripts!
https://hikerapi.com/p/N2P6iqiM
Apache License 2.0
4.69k stars 1.47k forks source link

No module named requests - infinity feedlike #369

Closed iransales closed 6 years ago

iransales commented 6 years ago

when I try to run "infinity_feedlike" this error happens

Last login: Sun Oct 22 20:28:10 on ttys001 MBP-de-iran:~ iran$ cd '/Users/iran/Desktop/instabot-master/examples/' && '/usr/bin/pythonw' -S '/Users/iran/Desktop/instabot-master/examples/infinity_feedlike.py' && echo Exit status: $? && exit 1 Traceback (most recent call last): File "/Users/iran/Desktop/instabot-master/examples/infinity_feedlike.py", line 14, in from instabot import Bot File "/Users/iran/Desktop/instabot-master/examples/../instabot/init.py", line 1, in from .api import API File "/Users/iran/Desktop/instabot-master/examples/../instabot/api/init.py", line 1, in from .api import API File "/Users/iran/Desktop/instabot-master/examples/../instabot/api/api.py", line 1, in import requests ImportError: No module named requests MBP-de-iran:examples iran$

ohld commented 6 years ago

have you tried pip install -U instabot or sudo pip install -U instabot?

iransales commented 6 years ago

Yes! I was already running, but when the macbook unloaded, and I tried to run again, gave this error

iransales commented 6 years ago

Can someone help me? PLEASE

ohld commented 6 years ago

All questions can be asked in Google. Just read the error that terminal gives you. It said:

ImportError: No module named requests

That means that you should install requests module. So you should google:

how to install python module

or

python install requests module

It will answer you to type in terminal:

pip install requests